diff options
author | Miles Bader <miles@gnu.org> | 2000-09-21 04:43:28 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-09-21 04:43:28 +0000 |
commit | 68bc119c515756e5c41baf1b9303a5ef33610076 (patch) | |
tree | 2af871246927d1dc4461aec0b5e1acdf427e0318 /lisp/info.el | |
parent | 19db4308b6292a12985c230221a2d942fb73e968 (diff) | |
download | emacs-68bc119c515756e5c41baf1b9303a5ef33610076.tar.gz |
Use the correct capitalization when making Info-mode and Info-edit-mode
`special' modes.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 156363efdc9..841e699cf34 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2078,7 +2078,7 @@ If no reference to follow, moves to the next node, or up if none." ;; Info mode is suitable only for specially formatted data. -(put 'info-mode 'mode-class 'special) +(put 'Info-mode 'mode-class 'special) (defun Info-mode () "Info mode provides commands for browsing through the Info documentation tree. @@ -2178,7 +2178,7 @@ Advanced commands: (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit)) ;; Info-edit mode is suitable only for specially formatted data. -(put 'info-edit-mode 'mode-class 'special) +(put 'Info-edit-mode 'mode-class 'special) (defun Info-edit-mode () "Major mode for editing the contents of an Info node. |