]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix doc strings in info.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 25 Feb 2017 08:52:11 +0000 (10:52 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Feb 2017 08:52:11 +0000 (10:52 +0200)
* lisp/info.el (Info-selection-hook, Info-mode-hook)
(Info-edit-mode-hook): Doc fixes.  (Bug#25794)

lisp/info.el

index 3bbeb3de582e35dcd252f94577de3409fbb0d25a..40b2f90ebd642de84a612a5192aece8cc335c8c4 100644 (file)
@@ -367,17 +367,17 @@ with wrapping around the current Info node."
   ;; Try to obey obsolete Info-fontify settings.
   (unless (and (boundp 'Info-fontify) (null Info-fontify))
     '(turn-on-font-lock))
-  "Hooks run when `Info-mode' is called."
+  "Hook run when activating Info Mode."
   :type 'hook
   :group 'info)
 
 (defcustom Info-selection-hook nil
-  "Hooks run when `Info-select-node' is called."
+  "Hook run when an Info node is selected as the current node."
   :type 'hook
   :group 'info)
 
 (defvar Info-edit-mode-hook nil
-  "Hooks run when `Info-edit-mode' is called.")
+  "Hook run when `Info-edit-mode' is activated.")
 
 (make-obsolete-variable 'Info-edit-mode-hook
                        "editing Info nodes by hand is not recommended." "24.4")