* help-fns.el (describe-variable): Make sure we get the right buffer name.
[bpt/emacs.git] / lisp / help-fns.el
CommitLineData
2fbc1934 1;;; help-fns.el --- Complex help functions -*- lexical-binding: t -*-
1113ff44 2
acaf905b 3;; Copyright (C) 1985-1986, 1993-1994, 1998-2012
589a99f2 4;; Free Software Foundation, Inc.
1113ff44
MR
5
6;; Maintainer: FSF
7;; Keywords: help, internal
bd78fa1d 8;; Package: emacs
1113ff44
MR
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25;;; Commentary:
26
27;; This file contains those help commands which are complicated, and
28;; which may not be used in every session. For example
29;; `describe-function' will probably be heavily used when doing elisp
30;; programming, but not if just editing C files. Simpler help commands
31;; are in help.el
32
33;;; Code:
34
1113ff44
MR
35;; Functions
36
37;;;###autoload
38(defun describe-function (function)
39 "Display the full documentation of FUNCTION (a symbol)."
40 (interactive
41 (let ((fn (function-called-at-point))
42 (enable-recursive-minibuffers t)
43 val)
44 (setq val (completing-read (if fn
45 (format "Describe function (default %s): " fn)
46 "Describe function: ")
47 obarray 'fboundp t nil nil
48 (and fn (symbol-name fn))))
49 (list (if (equal val "")
50 fn (intern val)))))
51 (if (null function)
52 (message "You didn't specify a function")
32226619
JB
53 (help-setup-xref (list #'describe-function function)
54 (called-interactively-p 'interactive))
1113ff44
MR
55 (save-excursion
56 (with-help-window (help-buffer)
57 (prin1 function)
58 ;; Use " is " instead of a colon so that
59 ;; it is easier to get out the function name using forward-sexp.
60 (princ " is ")
61 (describe-function-1 function)
62 (with-current-buffer standard-output
63 ;; Return the text we displayed.
64 (buffer-string))))))
65
66(defun help-split-fundoc (docstring def)
67 "Split a function DOCSTRING into the actual doc and the usage info.
673e08bb
SM
68Return (USAGE . DOC) or nil if there's no usage info, where USAGE info
69is a string describing the argument list of DEF, such as
70\"(apply FUNCTION &rest ARGUMENTS)\".
1113ff44
MR
71DEF is the function whose usage we're looking for in DOCSTRING."
72 ;; Functions can get the calling sequence at the end of the doc string.
73 ;; In cases where `function' has been fset to a subr we can't search for
74 ;; function's name in the doc string so we use `fn' as the anonymous
75 ;; function name instead.
76 (when (and docstring (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring))
77 (cons (format "(%s%s"
78 ;; Replace `fn' with the actual function name.
79 (if (consp def) "anonymous" def)
80 (match-string 1 docstring))
e2abe5a1
SM
81 (unless (zerop (match-beginning 0))
82 (substring docstring 0 (match-beginning 0))))))
1113ff44 83
e2abe5a1 84;; FIXME: Move to subr.el?
1113ff44
MR
85(defun help-add-fundoc-usage (docstring arglist)
86 "Add the usage info to DOCSTRING.
87If DOCSTRING already has a usage info, then just return it unchanged.
88The usage info is built from ARGLIST. DOCSTRING can be nil.
89ARGLIST can also be t or a string of the form \"(FUN ARG1 ARG2 ...)\"."
e2abe5a1
SM
90 (unless (stringp docstring) (setq docstring ""))
91 (if (or (string-match "\n\n(fn\\(\\( .*\\)?)\\)\\'" docstring)
92 (eq arglist t))
1113ff44
MR
93 docstring
94 (concat docstring
95 (if (string-match "\n?\n\\'" docstring)
96 (if (< (- (match-end 0) (match-beginning 0)) 2) "\n" "")
97 "\n\n")
98 (if (and (stringp arglist)
99 (string-match "\\`([^ ]+\\(.*\\))\\'" arglist))
100 (concat "(fn" (match-string 1 arglist) ")")
101 (format "%S" (help-make-usage 'fn arglist))))))
102
e2abe5a1 103;; FIXME: Move to subr.el?
c2bd2ab0
SM
104(defun help-function-arglist (def &optional preserve-names)
105 "Return a formal argument list for the function DEF.
106IF PRESERVE-NAMES is non-nil, return a formal arglist that uses
107the same names as used in the original source code, when possible."
1113ff44
MR
108 ;; Handle symbols aliased to other symbols.
109 (if (and (symbolp def) (fboundp def)) (setq def (indirect-function def)))
110 ;; If definition is a macro, find the function inside it.
8d6c1239
SM
111 (if (eq (car-safe def) 'macro) (setq def (cdr def)))
112 (cond
c2bd2ab0 113 ((and (byte-code-function-p def) (listp (aref def 0))) (aref def 0))
8d6c1239 114 ((eq (car-safe def) 'lambda) (nth 1 def))
23aba0ea 115 ((eq (car-safe def) 'closure) (nth 2 def))
c2bd2ab0
SM
116 ((or (and (byte-code-function-p def) (integerp (aref def 0)))
117 (subrp def))
118 (or (when preserve-names
119 (let* ((doc (condition-case nil (documentation def) (error nil)))
120 (docargs (if doc (car (help-split-fundoc doc nil))))
121 (arglist (if docargs
122 (cdar (read-from-string (downcase docargs)))))
123 (valid t))
124 ;; Check validity.
125 (dolist (arg arglist)
126 (unless (and (symbolp arg)
127 (let ((name (symbol-name arg)))
128 (if (eq (aref name 0) ?&)
129 (memq arg '(&rest &optional))
130 (not (string-match "\\." name)))))
131 (setq valid nil)))
132 (when valid arglist)))
133 (let* ((args-desc (if (not (subrp def))
134 (aref def 0)
135 (let ((a (subr-arity def)))
136 (logior (car a)
137 (if (numberp (cdr a))
138 (lsh (cdr a) 8)
139 (lsh 1 7))))))
140 (max (lsh args-desc -8))
141 (min (logand args-desc 127))
142 (rest (logand args-desc 128))
143 (arglist ()))
144 (dotimes (i min)
145 (push (intern (concat "arg" (number-to-string (1+ i)))) arglist))
146 (when (> max min)
147 (push '&optional arglist)
148 (dotimes (i (- max min))
149 (push (intern (concat "arg" (number-to-string (+ 1 i min))))
150 arglist)))
151 (unless (zerop rest) (push '&rest arglist) (push 'rest arglist))
152 (nreverse arglist))))
7abaf5cc 153 ((and (autoloadp def) (not (eq (nth 4 def) 'keymap)))
8d6c1239
SM
154 "[Arg list not available until function definition is loaded.]")
155 (t t)))
1113ff44 156
e2abe5a1 157;; FIXME: Move to subr.el?
1113ff44
MR
158(defun help-make-usage (function arglist)
159 (cons (if (symbolp function) function 'anonymous)
160 (mapcar (lambda (arg)
673e08bb 161 (if (not (symbolp arg)) arg
1113ff44 162 (let ((name (symbol-name arg)))
d032d5e7
SM
163 (cond
164 ((string-match "\\`&" name) arg)
165 ((string-match "\\`_" name)
166 (intern (upcase (substring name 1))))
167 (t (intern (upcase name)))))))
1113ff44
MR
168 arglist)))
169
170;; Could be this, if we make symbol-file do the work below.
171;; (defun help-C-file-name (subr-or-var kind)
172;; "Return the name of the C file where SUBR-OR-VAR is defined.
173;; KIND should be `var' for a variable or `subr' for a subroutine."
174;; (symbol-file (if (symbolp subr-or-var) subr-or-var
175;; (subr-name subr-or-var))
176;; (if (eq kind 'var) 'defvar 'defun)))
177;;;###autoload
178(defun help-C-file-name (subr-or-var kind)
179 "Return the name of the C file where SUBR-OR-VAR is defined.
180KIND should be `var' for a variable or `subr' for a subroutine."
181 (let ((docbuf (get-buffer-create " *DOC*"))
182 (name (if (eq 'var kind)
183 (concat "V" (symbol-name subr-or-var))
184 (concat "F" (subr-name subr-or-var)))))
185 (with-current-buffer docbuf
186 (goto-char (point-min))
187 (if (eobp)
188 (insert-file-contents-literally
189 (expand-file-name internal-doc-file-name doc-directory)))
190 (let ((file (catch 'loop
191 (while t
192 (let ((pnt (search-forward (concat "\1f" name "\n"))))
193 (re-search-backward "\1fS\\(.*\\)")
194 (let ((file (match-string 1)))
195 (if (member file build-files)
196 (throw 'loop file)
197 (goto-char pnt))))))))
198 (if (string-match "^ns.*\\(\\.o\\|obj\\)\\'" file)
199 (setq file (replace-match ".m" t t file 1))
200 (if (string-match "\\.\\(o\\|obj\\)\\'" file)
201 (setq file (replace-match ".c" t t file))))
202 (if (string-match "\\.\\(c\\|m\\)\\'" file)
203 (concat "src/" file)
204 file)))))
205
1659ada0
JB
206(defcustom help-downcase-arguments nil
207 "If non-nil, argument names in *Help* buffers are downcased."
208 :type 'boolean
209 :group 'help
210 :version "23.2")
211
212(defun help-highlight-arg (arg)
213 "Highlight ARG as an argument name for a *Help* buffer.
214Return ARG in face `help-argument-name'; ARG is also downcased
215if the variable `help-downcase-arguments' is non-nil."
216 (propertize (if help-downcase-arguments (downcase arg) arg)
217 'face 'help-argument-name))
1113ff44
MR
218
219(defun help-do-arg-highlight (doc args)
220 (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table)
221 (modify-syntax-entry ?\- "w")
2462470b 222 (dolist (arg args)
1113ff44
MR
223 (setq doc (replace-regexp-in-string
224 ;; This is heuristic, but covers all common cases
225 ;; except ARG1-ARG2
226 (concat "\\<" ; beginning of word
227 "\\(?:[a-z-]*-\\)?" ; for xxx-ARG
228 "\\("
229 (regexp-quote arg)
230 "\\)"
231 "\\(?:es\\|s\\|th\\)?" ; for ARGth, ARGs
232 "\\(?:-[a-z0-9-]+\\)?" ; for ARG-xxx, ARG-n
233 "\\(?:-[{([<`\"].*?\\)?"; for ARG-{x}, (x), <x>, [x], `x'
234 "\\>") ; end of word
1659ada0 235 (help-highlight-arg arg)
2462470b
SM
236 doc t t 1)))
237 doc))
1113ff44
MR
238
239(defun help-highlight-arguments (usage doc &rest args)
b9598260 240 (when (and usage (string-match "^(" usage))
1113ff44
MR
241 (with-temp-buffer
242 (insert usage)
243 (goto-char (point-min))
244 (let ((case-fold-search nil)
245 (next (not (or args (looking-at "\\["))))
246 (opt nil))
247 ;; Make a list of all arguments
248 (skip-chars-forward "^ ")
249 (while next
250 (or opt (not (looking-at " &")) (setq opt t))
251 (if (not (re-search-forward " \\([\\[(]*\\)\\([^] &)\.]+\\)" nil t))
252 (setq next nil)
253 (setq args (cons (match-string 2) args))
254 (when (and opt (string= (match-string 1) "("))
255 ;; A pesky CL-style optional argument with default value,
256 ;; so let's skip over it
257 (search-backward "(")
258 (goto-char (scan-sexps (point) 1)))))
91af3942 259 ;; Highlight arguments in the USAGE string
1113ff44
MR
260 (setq usage (help-do-arg-highlight (buffer-string) args))
261 ;; Highlight arguments in the DOC string
262 (setq doc (and doc (help-do-arg-highlight doc args))))))
263 ;; Return value is like the one from help-split-fundoc, but highlighted
264 (cons usage doc))
265
266;; The following function was compiled from the former functions
267;; `describe-simplify-lib-file-name' and `find-source-lisp-file' with
268;; some excerpts from `describe-function-1' and `describe-variable'.
269;; The only additional twists provided are (1) locate the defining file
270;; for autoloaded functions, and (2) give preference to files in the
271;; "install directory" (directories found via `load-path') rather than
272;; to files in the "compile directory" (directories found by searching
273;; the loaddefs.el file). We autoload it because it's also used by
274;; `describe-face' (instead of `describe-simplify-lib-file-name').
275
276;;;###autoload
277(defun find-lisp-object-file-name (object type)
278 "Guess the file that defined the Lisp object OBJECT, of type TYPE.
279OBJECT should be a symbol associated with a function, variable, or face;
280 alternatively, it can be a function definition.
fe4be04c
JB
281If TYPE is `defvar', search for a variable definition.
282If TYPE is `defface', search for a face definition.
1113ff44
MR
283If TYPE is the value returned by `symbol-function' for a function symbol,
284 search for a function definition.
285
286The return value is the absolute name of a readable file where OBJECT is
287defined. If several such files exist, preference is given to a file
288found via `load-path'. The return value can also be `C-source', which
289means that OBJECT is a function or variable defined in C. If no
290suitable file is found, return nil."
7abaf5cc 291 (let* ((autoloaded (autoloadp type))
1113ff44
MR
292 (file-name (or (and autoloaded (nth 1 type))
293 (symbol-file
294 object (if (memq type (list 'defvar 'defface))
295 type
296 'defun)))))
297 (cond
298 (autoloaded
299 ;; An autoloaded function: Locate the file since `symbol-function'
300 ;; has only returned a bare string here.
301 (setq file-name
302 (locate-file file-name load-path '(".el" ".elc") 'readable)))
303 ((and (stringp file-name)
304 (string-match "[.]*loaddefs.el\\'" file-name))
305 ;; An autoloaded variable or face. Visit loaddefs.el in a buffer
306 ;; and try to extract the defining file. The following form is
307 ;; from `describe-function-1' and `describe-variable'.
308 (let ((location
309 (condition-case nil
310 (find-function-search-for-symbol object nil file-name)
311 (error nil))))
6565b5ab 312 (when (cdr location)
1113ff44
MR
313 (with-current-buffer (car location)
314 (goto-char (cdr location))
315 (when (re-search-backward
316 "^;;; Generated autoloads from \\(.*\\)" nil t)
317 (setq file-name
318 (locate-file
273cefaa
GM
319 (file-name-sans-extension
320 (match-string-no-properties 1))
321 load-path '(".el" ".elc") 'readable))))))))
1113ff44
MR
322
323 (cond
324 ((and (not file-name) (subrp type))
325 ;; A built-in function. The form is from `describe-function-1'.
326 (if (get-buffer " *DOC*")
327 (help-C-file-name type 'subr)
328 'C-source))
329 ((and (not file-name) (symbolp object)
330 (integerp (get object 'variable-documentation)))
331 ;; A variable defined in C. The form is from `describe-variable'.
332 (if (get-buffer " *DOC*")
333 (help-C-file-name object 'var)
334 'C-source))
335 ((not (stringp file-name))
336 ;; If we don't have a file-name string by now, we lost.
337 nil)
d78cdcf7
CY
338 ;; Now, `file-name' should have become an absolute file name.
339 ;; For files loaded from ~/.emacs.elc, try ~/.emacs.
340 ((let (fn)
341 (and (string-equal file-name
342 (expand-file-name ".emacs.elc" "~"))
343 (file-readable-p (setq fn (expand-file-name ".emacs" "~")))
344 fn)))
345 ;; When the Elisp source file can be found in the install
346 ;; directory, return the name of that file.
1113ff44
MR
347 ((let ((lib-name
348 (if (string-match "[.]elc\\'" file-name)
349 (substring-no-properties file-name 0 -1)
350 file-name)))
1113ff44
MR
351 (or (and (file-readable-p lib-name) lib-name)
352 ;; The library might be compressed.
353 (and (file-readable-p (concat lib-name ".gz")) lib-name))))
354 ((let* ((lib-name (file-name-nondirectory file-name))
355 ;; The next form is from `describe-simplify-lib-file-name'.
356 (file-name
357 ;; Try converting the absolute file name to a library
358 ;; name, convert that back to a file name and see if we
359 ;; get the original one. If so, they are equivalent.
360 (if (equal file-name (locate-file lib-name load-path '("")))
361 (if (string-match "[.]elc\\'" lib-name)
362 (substring-no-properties lib-name 0 -1)
363 lib-name)
364 file-name))
365 ;; The next three forms are from `find-source-lisp-file'.
366 (elc-file (locate-file
367 (concat file-name
368 (if (string-match "\\.el\\'" file-name)
369 "c"
370 ".elc"))
371 load-path nil 'readable))
372 (str (when elc-file
373 (with-temp-buffer
374 (insert-file-contents-literally elc-file nil 0 256)
375 (buffer-string))))
376 (src-file (and str
377 (string-match ";;; from file \\(.*\\.el\\)" str)
378 (match-string 1 str))))
379 (and src-file (file-readable-p src-file) src-file))))))
380
381(declare-function ad-get-advice-info "advice" (function))
382
f91b35be
SM
383(defun help-fns--key-bindings (function)
384 (when (commandp function)
385 (let ((pt2 (with-current-buffer standard-output (point)))
386 (remapped (command-remapping function)))
387 (unless (memq remapped '(ignore undefined))
388 (let ((keys (where-is-internal
389 (or remapped function) overriding-local-map nil nil))
390 non-modified-keys)
391 (if (and (eq function 'self-insert-command)
392 (vectorp (car-safe keys))
393 (consp (aref (car keys) 0)))
394 (princ "It is bound to many ordinary text characters.\n")
395 ;; Which non-control non-meta keys run this command?
396 (dolist (key keys)
397 (if (member (event-modifiers (aref key 0)) '(nil (shift)))
398 (push key non-modified-keys)))
399 (when remapped
80a51fa0
CS
400 (princ "Its keys are remapped to ")
401 (princ (if (symbolp remapped)
402 (concat "`" (symbol-name remapped) "'")
403 "an anonymous command"))
404 (princ ".\n"))
f91b35be
SM
405
406 (when keys
407 (princ (if remapped
408 "Without this remapping, it would be bound to "
409 "It is bound to "))
410 ;; If lots of ordinary text characters run this command,
411 ;; don't mention them one by one.
412 (if (< (length non-modified-keys) 10)
413 (princ (mapconcat 'key-description keys ", "))
414 (dolist (key non-modified-keys)
415 (setq keys (delq key keys)))
416 (if keys
417 (progn
418 (princ (mapconcat 'key-description keys ", "))
419 (princ ", and many ordinary text characters"))
420 (princ "many ordinary text characters"))))
421 (when (or remapped keys non-modified-keys)
422 (princ ".")
423 (terpri)))))
424
425 (with-current-buffer standard-output
426 (fill-region-as-paragraph pt2 (point))
427 (unless (looking-back "\n\n")
428 (terpri))))))
429
71adb94b 430(defun help-fns--compiler-macro (function)
f91b35be 431 (let ((handler (function-get function 'compiler-macro)))
71adb94b 432 (when handler
f91b35be 433 (insert "\nThis function has a compiler macro")
71adb94b
SM
434 (let ((lib (get function 'compiler-macro-file)))
435 ;; FIXME: rather than look at the compiler-macro-file property,
436 ;; just look at `handler' itself.
437 (when (stringp lib)
f91b35be
SM
438 (insert (format " in `%s'" lib))
439 (save-excursion
440 (re-search-backward "`\\([^`']+\\)'" nil t)
441 (help-xref-button 1 'help-function-cmacro function lib))))
442 (insert ".\n"))))
443
444(defun help-fns--signature (function doc real-def real-function)
445 (unless (keymapp function) ; If definition is a keymap, skip arglist note.
446 (let* ((advertised (gethash real-def advertised-signature-table t))
447 (arglist (if (listp advertised)
448 advertised (help-function-arglist real-def)))
449 (usage (help-split-fundoc doc function)))
450 (if usage (setq doc (cdr usage)))
451 (let* ((use (cond
452 ((and usage (not (listp advertised))) (car usage))
453 ((listp arglist)
454 (format "%S" (help-make-usage function arglist)))
455 ((stringp arglist) arglist)
456 ;; Maybe the arglist is in the docstring of a symbol
457 ;; this one is aliased to.
458 ((let ((fun real-function))
459 (while (and (symbolp fun)
460 (setq fun (symbol-function fun))
461 (not (setq usage (help-split-fundoc
462 (documentation fun)
463 function)))))
464 usage)
465 (car usage))
466 ((or (stringp real-def)
467 (vectorp real-def))
468 (format "\nMacro: %s" (format-kbd-macro real-def)))
469 (t "[Missing arglist. Please make a bug report.]")))
470 (high (help-highlight-arguments use doc)))
471 (let ((fill-begin (point)))
472 (insert (car high) "\n")
473 (fill-region fill-begin (point)))
474 (cdr high)))))
475
476(defun help-fns--parent-mode (function)
477 ;; If this is a derived mode, link to the parent.
478 (let ((parent-mode (and (symbolp function)
479 (get function
480 'derived-mode-parent))))
481 (when parent-mode
482 (insert "\nParent mode: `")
483 (let ((beg (point)))
484 (insert (format "%s" parent-mode))
485 (make-text-button beg (point)
486 'type 'help-function
487 'help-args (list parent-mode)))
488 (insert "'.\n"))))
489
490(defun help-fns--obsolete (function)
863666eb
CY
491 ;; Ignore lambda constructs, keyboard macros, etc.
492 (let* ((obsolete (and (symbolp function)
493 (get function 'byte-obsolete-info)))
f91b35be
SM
494 (use (car obsolete)))
495 (when obsolete
863666eb 496 (insert "\nThis "
c4c0c2df 497 (if (eq (car-safe (symbol-function function)) 'macro)
863666eb
CY
498 "macro"
499 "function")
500 " is obsolete")
f91b35be
SM
501 (when (nth 2 obsolete)
502 (insert (format " since %s" (nth 2 obsolete))))
503 (insert (cond ((stringp use) (concat ";\n" use))
504 (use (format ";\nuse `%s' instead." use))
505 (t "."))
506 "\n"))))
71adb94b 507
c89926a5
CY
508;; We could use `symbol-file' but this is a wee bit more efficient.
509(defun help-fns--autoloaded-p (function file)
510 "Return non-nil if FUNCTION has previously been autoloaded.
511FILE is the file where FUNCTION was probably defined."
512 (let* ((file (file-name-sans-extension (file-truename file)))
513 (load-hist load-history)
514 (target (cons t function))
515 found)
516 (while (and load-hist (not found))
517 (and (caar load-hist)
518 (equal (file-name-sans-extension (caar load-hist)) file)
519 (setq found (member target (cdar load-hist))))
520 (setq load-hist (cdr load-hist)))
521 found))
522
1113ff44
MR
523;;;###autoload
524(defun describe-function-1 (function)
525 (let* ((advised (and (symbolp function) (featurep 'advice)
526 (ad-get-advice-info function)))
527 ;; If the function is advised, use the symbol that has the
528 ;; real definition, if that symbol is already set up.
529 (real-function
530 (or (and advised
531 (let ((origname (cdr (assq 'origname advised))))
532 (and (fboundp origname) origname)))
533 function))
534 ;; Get the real definition.
535 (def (if (symbolp real-function)
536 (symbol-function real-function)
537 function))
c89926a5
CY
538 (aliased (symbolp def))
539 (real-def (if aliased
540 (let ((f def))
541 (while (and (fboundp f)
542 (symbolp (symbol-function f)))
543 (setq f (symbol-function f)))
544 f)
545 def))
546 (file-name (find-lisp-object-file-name function def))
1113ff44 547 (pt1 (with-current-buffer (help-buffer) (point)))
c89926a5
CY
548 (beg (if (and (or (byte-code-function-p def)
549 (keymapp def)
550 (memq (car-safe def) '(macro lambda closure)))
b9d82339 551 file-name
c89926a5
CY
552 (help-fns--autoloaded-p function file-name))
553 (if (commandp def)
554 "an interactive autoloaded "
555 "an autoloaded ")
556 (if (commandp def) "an interactive " "a "))))
557
558 ;; Print what kind of function-like object FUNCTION is.
559 (princ (cond ((or (stringp def) (vectorp def))
560 "a keyboard macro")
561 ((subrp def)
562 (if (eq 'unevalled (cdr (subr-arity def)))
563 (concat beg "special form")
564 (concat beg "built-in function")))
565 ((byte-code-function-p def)
566 (concat beg "compiled Lisp function"))
567 (aliased
568 (format "an alias for `%s'" real-def))
569 ((eq (car-safe def) 'lambda)
570 (concat beg "Lisp function"))
571 ((eq (car-safe def) 'macro)
572 (concat beg "Lisp macro"))
573 ((eq (car-safe def) 'closure)
574 (concat beg "Lisp closure"))
7abaf5cc 575 ((autoloadp def)
c89926a5
CY
576 (format "%s autoloaded %s"
577 (if (commandp def) "an interactive" "an")
578 (if (eq (nth 4 def) 'keymap) "keymap"
579 (if (nth 4 def) "Lisp macro" "Lisp function"))))
580 ((keymapp def)
581 (let ((is-full nil)
582 (elts (cdr-safe def)))
583 (while elts
584 (if (char-table-p (car-safe elts))
585 (setq is-full t
586 elts nil))
587 (setq elts (cdr-safe elts)))
588 (concat beg (if is-full "keymap" "sparse keymap"))))
589 (t "")))
590
591 (if (and aliased (not (fboundp real-def)))
1113ff44
MR
592 (princ ",\nwhich is not defined. Please make a bug report.")
593 (with-current-buffer standard-output
594 (save-excursion
595 (save-match-data
596 (when (re-search-backward "alias for `\\([^`']+\\)'" nil t)
c89926a5 597 (help-xref-button 1 'help-function real-def)))))
1113ff44 598
1113ff44
MR
599 (when file-name
600 (princ " in `")
601 ;; We used to add .el to the file name,
602 ;; but that's completely wrong when the user used load-file.
e8e8dbf9
MR
603 (princ (if (eq file-name 'C-source)
604 "C source code"
605 (file-name-nondirectory file-name)))
1113ff44
MR
606 (princ "'")
607 ;; Make a hyperlink to the library.
608 (with-current-buffer standard-output
609 (save-excursion
610 (re-search-backward "`\\([^`']+\\)'" nil t)
cebabb67 611 (help-xref-button 1 'help-function-def function file-name))))
1113ff44
MR
612 (princ ".")
613 (with-current-buffer (help-buffer)
614 (fill-region-as-paragraph (save-excursion (goto-char pt1) (forward-line 0) (point))
615 (point)))
616 (terpri)(terpri)
863666eb 617
06485aa8 618 (let* ((doc-raw (documentation function t))
c89926a5
CY
619 ;; If the function is autoloaded, and its docstring has
620 ;; key substitution constructs, load the library.
621 (doc (progn
d8cc4c00 622 (and (autoloadp real-def) doc-raw
c89926a5
CY
623 help-enable-auto-load
624 (string-match "\\([^\\]=\\|[^=]\\|\\`\\)\\\\[[{<]"
625 doc-raw)
626 (load (cadr real-def) t))
f91b35be
SM
627 (substitute-command-keys doc-raw))))
628
629 (help-fns--key-bindings function)
630 (with-current-buffer standard-output
631 (setq doc (help-fns--signature function doc real-def real-function))
632
633 (help-fns--compiler-macro function)
634 (help-fns--parent-mode function)
635 (help-fns--obsolete function)
636
637 (insert "\n"
638 (or doc "Not documented.")))))))
1113ff44
MR
639
640\f
641;; Variables
642
643;;;###autoload
644(defun variable-at-point (&optional any-symbol)
645 "Return the bound variable symbol found at or before point.
646Return 0 if there is no such symbol.
647If ANY-SYMBOL is non-nil, don't insist the symbol be bound."
648 (with-syntax-table emacs-lisp-mode-syntax-table
649 (or (condition-case ()
650 (save-excursion
047b2bb9 651 (skip-chars-forward "'")
1113ff44
MR
652 (or (not (zerop (skip-syntax-backward "_w")))
653 (eq (char-syntax (following-char)) ?w)
654 (eq (char-syntax (following-char)) ?_)
655 (forward-sexp -1))
656 (skip-chars-forward "'")
657 (let ((obj (read (current-buffer))))
658 (and (symbolp obj) (boundp obj) obj)))
659 (error nil))
660 (let* ((str (find-tag-default))
661 (sym (if str (intern-soft str))))
662 (if (and sym (or any-symbol (boundp sym)))
663 sym
664 (save-match-data
665 (when (and str (string-match "\\`\\W*\\(.*?\\)\\W*\\'" str))
666 (setq sym (intern-soft (match-string 1 str)))
667 (and (or any-symbol (boundp sym)) sym)))))
668 0)))
669
670(defun describe-variable-custom-version-info (variable)
671 (let ((custom-version (get variable 'custom-version))
672 (cpv (get variable 'custom-package-version))
673 (output nil))
674 (if custom-version
675 (setq output
676 (format "This variable was introduced, or its default value was changed, in\nversion %s of Emacs.\n"
677 custom-version))
678 (when cpv
679 (let* ((package (car-safe cpv))
680 (version (if (listp (cdr-safe cpv))
681 (car (cdr-safe cpv))
682 (cdr-safe cpv)))
683 (pkg-versions (assq package customize-package-emacs-version-alist))
684 (emacsv (cdr (assoc version pkg-versions))))
685 (if (and package version)
686 (setq output
687 (format (concat "This variable was introduced, or its default value was changed, in\nversion %s of the %s package"
688 (if emacsv
689 (format " that is part of Emacs %s" emacsv))
690 ".\n")
691 version package))))))
692 output))
693
694;;;###autoload
695(defun describe-variable (variable &optional buffer frame)
696 "Display the full documentation of VARIABLE (a symbol).
697Returns the documentation as a string, also.
698If VARIABLE has a buffer-local value in BUFFER or FRAME
699\(default to the current buffer and current frame),
700it is displayed along with the global value."
701 (interactive
702 (let ((v (variable-at-point))
703 (enable-recursive-minibuffers t)
704 val)
705 (setq val (completing-read (if (symbolp v)
706 (format
707 "Describe variable (default %s): " v)
708 "Describe variable: ")
709 obarray
ba83908c 710 (lambda (vv)
8d17e7ca 711 (or (get vv 'variable-documentation)
6f4e1aed 712 (and (boundp vv) (not (keywordp vv)))))
1113ff44
MR
713 t nil nil
714 (if (symbolp v) (symbol-name v))))
715 (list (if (equal val "")
716 v (intern val)))))
717 (let (file-name)
718 (unless (buffer-live-p buffer) (setq buffer (current-buffer)))
719 (unless (frame-live-p frame) (setq frame (selected-frame)))
720 (if (not (symbolp variable))
721 (message "You did not specify a variable")
722 (save-excursion
723 (let ((valvoid (not (with-current-buffer buffer (boundp variable))))
f0422feb 724 (permanent-local (get variable 'permanent-local))
1113ff44
MR
725 val val-start-pos locus)
726 ;; Extract the value before setting up the output buffer,
727 ;; in case `buffer' *is* the output buffer.
728 (unless valvoid
729 (with-selected-frame frame
730 (with-current-buffer buffer
731 (setq val (symbol-value variable)
732 locus (variable-binding-locus variable)))))
733 (help-setup-xref (list #'describe-variable variable buffer)
32226619 734 (called-interactively-p 'interactive))
1113ff44
MR
735 (with-help-window (help-buffer)
736 (with-current-buffer buffer
737 (prin1 variable)
738 (setq file-name (find-lisp-object-file-name variable 'defvar))
739
740 (if file-name
741 (progn
742 (princ " is a variable defined in `")
e8e8dbf9
MR
743 (princ (if (eq file-name 'C-source)
744 "C source code"
745 (file-name-nondirectory file-name)))
1113ff44
MR
746 (princ "'.\n")
747 (with-current-buffer standard-output
748 (save-excursion
749 (re-search-backward "`\\([^`']+\\)'" nil t)
750 (help-xref-button 1 'help-variable-def
751 variable file-name)))
752 (if valvoid
753 (princ "It is void as a variable.")
754 (princ "Its ")))
755 (if valvoid
756 (princ " is void as a variable.")
757 (princ "'s "))))
3c505d31 758 (unless valvoid
1113ff44
MR
759 (with-current-buffer standard-output
760 (setq val-start-pos (point))
761 (princ "value is ")
6c1e4b46
CY
762 (let ((from (point))
763 (line-beg (line-beginning-position))
6c1e4b46
CY
764 (print-rep
765 (let ((print-quoted t))
766 (prin1-to-string val))))
767 (if (< (+ (length print-rep) (point) (- line-beg)) 68)
768 (insert print-rep)
769 (terpri)
770 (pp val)
771 (if (< (point) (+ 68 (line-beginning-position 0)))
772 (delete-region from (1+ from))
773 (delete-region (1- from) from)))
0097720d
SM
774 (let* ((sv (get variable 'standard-value))
775 (origval (and (consp sv)
776 (condition-case nil
777 (eval (car sv))
778 (error :help-eval-error)))))
779 (when (and (consp sv)
780 (not (equal origval val))
781 (not (equal origval :help-eval-error)))
782 (princ "\nOriginal value was \n")
783 (setq from (point))
784 (pp origval)
785 (if (< (point) (+ from 20))
786 (delete-region (1- from) from)))))))
1113ff44 787 (terpri)
1113ff44 788 (when locus
e2b551c5
SM
789 (cond
790 ((bufferp locus)
f0422feb 791 (princ (format "Local in buffer %s; "
f5733f87 792 (buffer-name buffer))))
e2b551c5
SM
793 ((framep locus)
794 (princ (format "It is a frame-local variable; ")))
795 ((terminal-live-p locus)
796 (princ (format "It is a terminal-local variable; ")))
797 (t
798 (princ (format "It is local to %S" locus))))
1113ff44
MR
799 (if (not (default-boundp variable))
800 (princ "globally void")
f0422feb 801 (let ((global-val (default-value variable)))
1113ff44
MR
802 (with-current-buffer standard-output
803 (princ "global value is ")
f0422feb
CY
804 (if (eq val global-val)
805 (princ "the same.")
806 (terpri)
807 ;; Fixme: pp can take an age if you happen to
808 ;; ask for a very large expression. We should
809 ;; probably print it raw once and check it's a
810 ;; sensible size before prettyprinting. -- fx
811 (let ((from (point)))
812 (pp global-val)
813 ;; See previous comment for this function.
814 ;; (help-xref-on-pp from (point))
815 (if (< (point) (+ from 20))
816 (delete-region (1- from) from)))))))
1113ff44
MR
817 (terpri))
818
819 ;; If the value is large, move it to the end.
820 (with-current-buffer standard-output
821 (when (> (count-lines (point-min) (point-max)) 10)
822 ;; Note that setting the syntax table like below
823 ;; makes forward-sexp move over a `'s' at the end
824 ;; of a symbol.
825 (set-syntax-table emacs-lisp-mode-syntax-table)
826 (goto-char val-start-pos)
827 ;; The line below previously read as
828 ;; (delete-region (point) (progn (end-of-line) (point)))
829 ;; which suppressed display of the buffer local value for
830 ;; large values.
831 (when (looking-at "value is") (replace-match ""))
832 (save-excursion
833 (insert "\n\nValue:")
834 (set (make-local-variable 'help-button-cache)
835 (point-marker)))
836 (insert "value is shown ")
837 (insert-button "below"
838 'action help-button-cache
839 'follow-link t
840 'help-echo "mouse-2, RET: show value")
841 (insert ".\n")))
842 (terpri)
843
844 (let* ((alias (condition-case nil
845 (indirect-variable variable)
846 (error variable)))
847 (obsolete (get variable 'byte-obsolete-variable))
848 (use (car obsolete))
849 (safe-var (get variable 'safe-local-variable))
06485aa8
SM
850 (doc (or (documentation-property
851 variable 'variable-documentation)
852 (documentation-property
853 alias 'variable-documentation)))
1113ff44 854 (extra-line nil))
f0422feb
CY
855
856 ;; Mention if it's a local variable.
857 (cond
858 ((and (local-variable-if-set-p variable)
859 (or (not (local-variable-p variable))
860 (with-temp-buffer
861 (local-variable-if-set-p variable))))
1113ff44 862 (setq extra-line t)
dea31bd3 863 (princ " Automatically becomes ")
f0422feb 864 (if permanent-local
dea31bd3
CY
865 (princ "permanently "))
866 (princ "buffer-local when set.\n"))
f0422feb
CY
867 ((not permanent-local))
868 ((bufferp locus)
869 (princ " This variable's buffer-local value is permanent.\n"))
870 (t
871 (princ " This variable's value is permanent \
872if it is given a local binding.\n")))
873
874 ;; Mention if it's an alias.
1113ff44
MR
875 (unless (eq alias variable)
876 (setq extra-line t)
877 (princ (format " This variable is an alias for `%s'.\n" alias)))
878
879 (when obsolete
880 (setq extra-line t)
881 (princ " This variable is obsolete")
2403c841
SM
882 (if (nth 2 obsolete)
883 (princ (format " since %s" (nth 2 obsolete))))
1113ff44
MR
884 (princ (cond ((stringp use) (concat ";\n " use))
885 (use (format ";\n use `%s' instead." (car obsolete)))
886 (t ".")))
887 (terpri))
2ee20f24
JL
888
889 (when (member (cons variable val) file-local-variables-alist)
890 (setq extra-line t)
891 (if (member (cons variable val) dir-local-variables-alist)
892 (let ((file (and (buffer-file-name)
303f9ae0
GM
893 (not (file-remote-p (buffer-file-name)))
894 (dir-locals-find-file
895 (buffer-file-name))))
f0422feb
CY
896 (dir-file t))
897 (princ " This variable's value is directory-local")
898 (if (null file)
899 (princ ".\n")
900 (princ ", set ")
303f9ae0
GM
901 (if (consp file) ; result from cache
902 ;; If the cache element has an mtime, we
903 ;; assume it came from a file.
904 (if (nth 2 file)
905 (setq file (expand-file-name
906 dir-locals-file (car file)))
907 ;; Otherwise, assume it was set directly.
f0422feb
CY
908 (setq dir-file nil)))
909 (princ (if dir-file
910 "by the file\n `"
911 "for the directory\n `"))
912 (with-current-buffer standard-output
913 (insert-text-button
914 file 'type 'help-dir-local-var-def
915 'help-args (list variable file)))
916 (princ "'.\n")))
917 (princ " This variable's value is file-local.\n")))
2ee20f24 918
589a99f2
GM
919 (when (memq variable ignored-local-variables)
920 (setq extra-line t)
f0422feb 921 (princ " This variable is ignored as a file-local \
589a99f2
GM
922variable.\n"))
923
924 ;; Can be both risky and safe, eg auto-fill-function.
925 (when (risky-local-variable-p variable)
926 (setq extra-line t)
f0422feb
CY
927 (princ " This variable may be risky if used as a \
928file-local variable.\n")
589a99f2
GM
929 (when (assq variable safe-local-variable-values)
930 (princ " However, you have added it to \
931`safe-local-variable-values'.\n")))
932
1113ff44
MR
933 (when safe-var
934 (setq extra-line t)
935 (princ " This variable is safe as a file local variable ")
936 (princ "if its value\n satisfies the predicate ")
937 (princ (if (byte-code-function-p safe-var)
04e8abfa 938 "which is a byte-compiled expression.\n"
1113ff44
MR
939 (format "`%s'.\n" safe-var))))
940
941 (if extra-line (terpri))
942 (princ "Documentation:\n")
943 (with-current-buffer standard-output
944 (insert (or doc "Not documented as a variable."))))
945
946 ;; Make a link to customize if this variable can be customized.
947 (when (custom-variable-p variable)
948 (let ((customize-label "customize"))
949 (terpri)
950 (terpri)
951 (princ (concat "You can " customize-label " this variable."))
952 (with-current-buffer standard-output
953 (save-excursion
954 (re-search-backward
955 (concat "\\(" customize-label "\\)") nil t)
956 (help-xref-button 1 'help-customize-variable variable))))
957 ;; Note variable's version or package version
958 (let ((output (describe-variable-custom-version-info variable)))
959 (when output
960 (terpri)
961 (terpri)
962 (princ output))))
963
7fdbcd83 964 (with-current-buffer standard-output
1113ff44
MR
965 ;; Return the text we displayed.
966 (buffer-string))))))))
967
968
969;;;###autoload
970(defun describe-syntax (&optional buffer)
971 "Describe the syntax specifications in the syntax table of BUFFER.
972The descriptions are inserted in a help buffer, which is then displayed.
973BUFFER defaults to the current buffer."
974 (interactive)
975 (setq buffer (or buffer (current-buffer)))
32226619
JB
976 (help-setup-xref (list #'describe-syntax buffer)
977 (called-interactively-p 'interactive))
1113ff44
MR
978 (with-help-window (help-buffer)
979 (let ((table (with-current-buffer buffer (syntax-table))))
980 (with-current-buffer standard-output
981 (describe-vector table 'internal-describe-syntax-value)
982 (while (setq table (char-table-parent table))
983 (insert "\nThe parent syntax table is:")
984 (describe-vector table 'internal-describe-syntax-value))))))
985
986(defun help-describe-category-set (value)
987 (insert (cond
988 ((null value) "default")
989 ((char-table-p value) "deeper char-table ...")
2fbc1934 990 (t (condition-case nil
1113ff44
MR
991 (category-set-mnemonics value)
992 (error "invalid"))))))
993
994;;;###autoload
995(defun describe-categories (&optional buffer)
996 "Describe the category specifications in the current category table.
997The descriptions are inserted in a buffer, which is then displayed.
998If BUFFER is non-nil, then describe BUFFER's category table instead.
999BUFFER should be a buffer or a buffer name."
1000 (interactive)
1001 (setq buffer (or buffer (current-buffer)))
32226619
JB
1002 (help-setup-xref (list #'describe-categories buffer)
1003 (called-interactively-p 'interactive))
1113ff44 1004 (with-help-window (help-buffer)
c6ec96f8
KH
1005 (let* ((table (with-current-buffer buffer (category-table)))
1006 (docs (char-table-extra-slot table 0)))
1007 (if (or (not (vectorp docs)) (/= (length docs) 95))
1008 (error "Invalid first extra slot in this category table\n"))
1113ff44 1009 (with-current-buffer standard-output
c6ec96f8
KH
1010 (insert "Legend of category mnemonics (see the tail for the longer description)\n")
1011 (let ((pos (point)) (items 0) lines n)
1012 (dotimes (i 95)
1013 (if (aref docs i) (setq items (1+ items))))
1014 (setq lines (1+ (/ (1- items) 4)))
1015 (setq n 0)
1016 (dotimes (i 95)
1017 (let ((elt (aref docs i)))
1018 (when elt
1019 (string-match ".*" elt)
1020 (setq elt (match-string 0 elt))
1021 (if (>= (length elt) 17)
1022 (setq elt (concat (substring elt 0 14) "...")))
1023 (if (< (point) (point-max))
1024 (move-to-column (* 20 (/ n lines)) t))
1025 (insert (+ i ?\s) ?: elt)
1026 (if (< (point) (point-max))
1027 (forward-line 1)
1028 (insert "\n"))
1029 (setq n (1+ n))
1030 (if (= (% n lines) 0)
1031 (goto-char pos))))))
1032 (goto-char (point-max))
1033 (insert "\n"
1034 "character(s)\tcategory mnemonics\n"
1035 "------------\t------------------")
1113ff44 1036 (describe-vector table 'help-describe-category-set)
c6ec96f8
KH
1037 (insert "Legend of category mnemonics:\n")
1038 (dotimes (i 95)
1039 (let ((elt (aref docs i)))
1040 (when elt
1041 (if (string-match "\n" elt)
1042 (setq elt (substring elt (match-end 0))))
1043 (insert (+ i ?\s) ": " elt "\n"))))
1044 (while (setq table (char-table-parent table))
1045 (insert "\nThe parent category table is:")
1046 (describe-vector table 'help-describe-category-set))))))
1113ff44 1047
17284e30
GM
1048\f
1049;;; Replacements for old lib-src/ programs. Don't seem especially useful.
1050
1051;; Replaces lib-src/digest-doc.c.
1052;;;###autoload
1053(defun doc-file-to-man (file)
1054 "Produce an nroff buffer containing the doc-strings from the DOC file."
1055 (interactive (list (read-file-name "Name of DOC file: " doc-directory
1056 internal-doc-file-name t)))
1057 (or (file-readable-p file)
1058 (error "Cannot read file `%s'" file))
1059 (pop-to-buffer (generate-new-buffer "*man-doc*"))
1060 (setq buffer-undo-list t)
1061 (insert ".TH \"Command Summary for GNU Emacs\"\n"
1062 ".AU Richard M. Stallman\n")
1063 (insert-file-contents file)
1064 (let (notfirst)
1065 (while (search-forward "\1f" nil 'move)
1066 (if (looking-at "S")
1067 (delete-region (1- (point)) (line-end-position))
1068 (delete-char -1)
1069 (if notfirst
1070 (insert "\n.DE\n")
1071 (setq notfirst t))
1072 (insert "\n.SH ")
1073 (insert (if (looking-at "F") "Function " "Variable "))
1074 (delete-char 1)
1075 (forward-line 1)
1076 (insert ".DS L\n"))))
1077 (insert "\n.DE\n")
1078 (setq buffer-undo-list nil)
1079 (nroff-mode))
1080
1081;; Replaces lib-src/sorted-doc.c.
1082;;;###autoload
1083(defun doc-file-to-info (file)
1084 "Produce a texinfo buffer with sorted doc-strings from the DOC file."
1085 (interactive (list (read-file-name "Name of DOC file: " doc-directory
1086 internal-doc-file-name t)))
1087 (or (file-readable-p file)
1088 (error "Cannot read file `%s'" file))
1089 (let ((i 0) type name doc alist)
1090 (with-temp-buffer
1091 (insert-file-contents file)
1092 ;; The characters "@{}" need special treatment.
1093 (while (re-search-forward "[@{}]" nil t)
1094 (backward-char)
1095 (insert "@")
1096 (forward-char 1))
1097 (goto-char (point-min))
1098 (while (search-forward "\1f" nil t)
1099 (unless (looking-at "S")
1100 (setq type (char-after)
1101 name (buffer-substring (1+ (point)) (line-end-position))
1102 doc (buffer-substring (line-beginning-position 2)
1103 (if (search-forward "\1f" nil 'move)
1104 (1- (point))
1105 (point)))
1106 alist (cons (list name type doc) alist))
1107 (backward-char 1))))
1108 (pop-to-buffer (generate-new-buffer "*info-doc*"))
1109 (setq buffer-undo-list t)
1110 ;; Write the output header.
1111 (insert "\\input texinfo @c -*-texinfo-*-\n"
1112 "@setfilename emacsdoc.info\n"
1113 "@settitle Command Summary for GNU Emacs\n"
1114 "@finalout\n"
1115 "\n@node Top\n"
1116 "@unnumbered Command Summary for GNU Emacs\n\n"
1117 "@table @asis\n\n"
1118 "@iftex\n"
1119 "@global@let@ITEM@item\n"
1120 "@def@item{@filbreak@vskip5pt@ITEM}\n"
1121 "@font@tensy cmsy10 scaled @magstephalf\n"
1122 "@font@teni cmmi10 scaled @magstephalf\n"
1123 "@def\\{{@tensy@char110}}\n" ; this backslash goes with cmr10
1124 "@def|{{@tensy@char106}}\n"
1125 "@def@{{{@tensy@char102}}\n"
1126 "@def@}{{@tensy@char103}}\n"
1127 "@def<{{@teni@char62}}\n"
1128 "@def>{{@teni@char60}}\n"
1129 "@chardef@@64\n"
1130 "@catcode43=12\n"
1131 "@tableindent-0.2in\n"
1132 "@end iftex\n")
1133 ;; Sort the array by name; within each name, by type (functions first).
1134 (setq alist (sort alist (lambda (e1 e2)
1135 (if (string-equal (car e1) (car e2))
1136 (<= (cadr e1) (cadr e2))
1137 (string-lessp (car e1) (car e2))))))
1138 ;; Print each function.
1139 (dolist (e alist)
1140 (insert "\n@item "
1141 (if (char-equal (cadr e) ?\F) "Function" "Variable")
1142 " @code{" (car e) "}\n@display\n"
1143 (nth 2 e)
1144 "\n@end display\n")
1145 ;; Try to avoid a save size overflow in the TeX output routine.
1146 (if (zerop (setq i (% (1+ i) 100)))
1147 (insert "\n@end table\n@table @asis\n")))
1148 (insert "@end table\n"
1149 "@bye\n")
1150 (setq buffer-undo-list nil)
1151 (texinfo-mode)))
1152
1113ff44
MR
1153(provide 'help-fns)
1154
1113ff44 1155;;; help-fns.el ends here