aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-25 17:17:50 +0000
committerRichard M. Stallman1993-05-25 17:17:50 +0000
commitd5913bf6f59c7dccda87c69171393bb3283174fe (patch)
tree27c9b9e57e071496b7edee91a7d8c33409cec318
parentb73e2d8498eaf4c93cec7873ec285b7d33c34c41 (diff)
downloademacs-d5913bf6f59c7dccda87c69171393bb3283174fe.tar.gz
emacs-d5913bf6f59c7dccda87c69171393bb3283174fe.zip
(Info-edit, Info-last-search, Info-enable-edit):
Correct case in `Info-mode-map'.
-rw-r--r--lisp/info.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el
index e1b4766b679..8efe8e2802d 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -32,7 +32,7 @@
32Each element of list is a list (FILENAME NODENAME BUFFERPOS).") 32Each element of list is a list (FILENAME NODENAME BUFFERPOS).")
33 33
34(defvar Info-enable-edit nil 34(defvar Info-enable-edit nil
35 "*Non-nil means the \\<info-mode-map>\\[Info-edit] command in Info can edit the current node. 35 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
36This is convenient if you want to write info files by hand. 36This is convenient if you want to write info files by hand.
37However, we recommend that you not do this. 37However, we recommend that you not do this.
38It is better to write a Texinfo file and generate the Info file from that, 38It is better to write a Texinfo file and generate the Info file from that,
@@ -496,7 +496,7 @@ to read a file name from the minibuffer."
496 (Info-restore-point (cdr hl))))) 496 (Info-restore-point (cdr hl)))))
497 497
498(defvar Info-last-search nil 498(defvar Info-last-search nil
499 "Default regexp for \\<info-mode-map>\\[Info-search] command to search for.") 499 "Default regexp for \\<Info-mode-map>\\[Info-search] command to search for.")
500 500
501(defun Info-search (regexp) 501(defun Info-search (regexp)
502 "Search for REGEXP, starting from point, and select node it's found in." 502 "Search for REGEXP, starting from point, and select node it's found in."
@@ -1228,7 +1228,7 @@ Allowed only if variable `Info-enable-edit' is non-nil."
1228 ;; Make mode line update. 1228 ;; Make mode line update.
1229 (set-buffer-modified-p (buffer-modified-p)) 1229 (set-buffer-modified-p (buffer-modified-p))
1230 (message (substitute-command-keys 1230 (message (substitute-command-keys
1231 "Editing: Type \\<info-mode-map>\\[Info-cease-edit] to return to info"))) 1231 "Editing: Type \\<Info-mode-map>\\[Info-cease-edit] to return to info")))
1232 1232
1233(defun Info-cease-edit () 1233(defun Info-cease-edit ()
1234 "Finish editing Info node; switch back to Info proper." 1234 "Finish editing Info node; switch back to Info proper."