]> code.delx.au - gnu-emacs/commitdiff
global-eldoc-mode doc fix
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2016 23:08:23 +0000 (01:08 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2016 23:08:23 +0000 (01:08 +0200)
* lisp/emacs-lisp/eldoc.el (global-eldoc-mode): Be more
specific about what "applicable" means (bug#23071).

lisp/emacs-lisp/eldoc.el

index bc5a78bd086a56382c85e6f26e8308911e05e4ab..6c2f869f260ab632b053721f1a317b8b8fa1994d 100644 (file)
@@ -204,8 +204,16 @@ expression point is on."
 
 ;;;###autoload
 (define-minor-mode global-eldoc-mode
-  "Enable `eldoc-mode' in all buffers where it's applicable."
-  :group 'eldoc :global t
+  "Toggle Global Eldoc mode on or off.
+With a prefix argument ARG, enable Global Eldoc mode if ARG is
+positive, and disable it otherwise.  If called from Lisp, enable
+the mode if ARG is omitted or nil, and toggle it if ARG is ‘toggle’.
+
+If Global Eldoc mode is on, `eldoc-mode' will be enabled in all
+buffers where it's applicable.  These are buffers that have modes
+that have enabled eldoc support.  See `eldoc-documentation-function'."
+  :group 'eldoc
+  :global t
   :initialize 'custom-initialize-delay
   :init-value t
   (setq eldoc-last-message nil)