diff options
| author | Eli Zaretskii | 2017-02-25 10:52:11 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-02-25 10:52:11 +0200 |
| commit | 640661838dbba8185990e839712c91a14641ddf3 (patch) | |
| tree | 91f020df7d2bb6eadf6ca928f6cb13e803503567 | |
| parent | c1ed1525c6a6eecd243e059b461f3793b55f3ebd (diff) | |
| download | emacs-640661838dbba8185990e839712c91a14641ddf3.tar.gz emacs-640661838dbba8185990e839712c91a14641ddf3.zip | |
Fix doc strings in info.el
* lisp/info.el (Info-selection-hook, Info-mode-hook)
(Info-edit-mode-hook): Doc fixes. (Bug#25794)
| -rw-r--r-- | lisp/info.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el index 3bbeb3de582..40b2f90ebd6 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -367,17 +367,17 @@ with wrapping around the current Info node." | |||
| 367 | ;; Try to obey obsolete Info-fontify settings. | 367 | ;; Try to obey obsolete Info-fontify settings. |
| 368 | (unless (and (boundp 'Info-fontify) (null Info-fontify)) | 368 | (unless (and (boundp 'Info-fontify) (null Info-fontify)) |
| 369 | '(turn-on-font-lock)) | 369 | '(turn-on-font-lock)) |
| 370 | "Hooks run when `Info-mode' is called." | 370 | "Hook run when activating Info Mode." |
| 371 | :type 'hook | 371 | :type 'hook |
| 372 | :group 'info) | 372 | :group 'info) |
| 373 | 373 | ||
| 374 | (defcustom Info-selection-hook nil | 374 | (defcustom Info-selection-hook nil |
| 375 | "Hooks run when `Info-select-node' is called." | 375 | "Hook run when an Info node is selected as the current node." |
| 376 | :type 'hook | 376 | :type 'hook |
| 377 | :group 'info) | 377 | :group 'info) |
| 378 | 378 | ||
| 379 | (defvar Info-edit-mode-hook nil | 379 | (defvar Info-edit-mode-hook nil |
| 380 | "Hooks run when `Info-edit-mode' is called.") | 380 | "Hook run when `Info-edit-mode' is activated.") |
| 381 | 381 | ||
| 382 | (make-obsolete-variable 'Info-edit-mode-hook | 382 | (make-obsolete-variable 'Info-edit-mode-hook |
| 383 | "editing Info nodes by hand is not recommended." "24.4") | 383 | "editing Info nodes by hand is not recommended." "24.4") |