diff options
author | Bozhidar Batsov <bozhidar@batsov.com> | 2013-11-05 11:47:47 +0200 |
---|---|---|
committer | Bozhidar Batsov <bozhidar@batsov.com> | 2013-11-05 11:47:47 +0200 |
commit | ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af (patch) | |
tree | e15b3dde0784c7c23fe6ac18775b0e1c2f105cee /lisp/emacs-lisp | |
parent | ae93bc748070852e8f697c2e8f05b9b5bc419b68 (diff) | |
download | emacs-ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af.tar.gz emacs-ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af.tar.bz2 emacs-ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af.zip |
* lisp/progmodes/python.el (python-mode): Remove incorrect text from docstring.
* lisp/progmodes/scheme.el (scheme-mode): Remove incorrect text from docstring.
* lisp/progmodes/prolog.el (prolog-mode): Remove incorrect text from docstring.
* lisp/emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode, emacs-lisp-mode):
Remove incorrect text from docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 8d4e6e3a20a..f4e9b311acc 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -700,9 +700,7 @@ Commands: Delete converts tabs to spaces as it moves back. Blank lines separate paragraphs. Semicolons start comments. -\\{emacs-lisp-mode-map} -Entry to this mode calls the value of `emacs-lisp-mode-hook' -if that value is non-nil." +\\{emacs-lisp-mode-map}" :group 'lisp (lisp-mode-variables nil nil 'elisp) (setq imenu-case-fold-search nil) @@ -792,10 +790,7 @@ Blank lines separate paragraphs. Semicolons start comments. \\{lisp-mode-map} Note that `run-lisp' may be used either to start an inferior Lisp job -or to switch back to an existing one. - -Entry to this mode calls the value of `lisp-mode-hook' -if that value is non-nil." +or to switch back to an existing one." (lisp-mode-variables nil t) (setq-local find-tag-default-function 'lisp-find-tag-default) (setq-local comment-start-skip @@ -860,9 +855,7 @@ Delete converts tabs to spaces as it moves back. Paragraphs are separated only by blank lines. Semicolons start comments. -\\{lisp-interaction-mode-map} -Entry to this mode calls the value of `lisp-interaction-mode-hook' -if that value is non-nil." +\\{lisp-interaction-mode-map}" :abbrev-table nil) (defun eval-print-last-sexp () |