diff options
| author | Bozhidar Batsov | 2013-11-05 11:47:47 +0200 |
|---|---|---|
| committer | Bozhidar Batsov | 2013-11-05 11:47:47 +0200 |
| commit | ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af (patch) | |
| tree | e15b3dde0784c7c23fe6ac18775b0e1c2f105cee /lisp/progmodes | |
| parent | ae93bc748070852e8f697c2e8f05b9b5bc419b68 (diff) | |
| download | emacs-ae1f1ce1e2f1ffeedcfdfa2c9e463483d96a99af.tar.gz 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/progmodes')
| -rw-r--r-- | lisp/progmodes/prolog.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/scheme.el | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el index 5a2d7c1cf0e..c766189c4d2 100644 --- a/lisp/progmodes/prolog.el +++ b/lisp/progmodes/prolog.el | |||
| @@ -1109,9 +1109,7 @@ To find out what version of Prolog mode you are running, enter | |||
| 1109 | `\\[prolog-mode-version]'. | 1109 | `\\[prolog-mode-version]'. |
| 1110 | 1110 | ||
| 1111 | Commands: | 1111 | Commands: |
| 1112 | \\{prolog-mode-map} | 1112 | \\{prolog-mode-map}" |
| 1113 | Entry to this mode calls the value of `prolog-mode-hook' | ||
| 1114 | if that value is non-nil." | ||
| 1115 | (setq mode-name (concat "Prolog" | 1113 | (setq mode-name (concat "Prolog" |
| 1116 | (cond | 1114 | (cond |
| 1117 | ((eq prolog-system 'eclipse) "[ECLiPSe]") | 1115 | ((eq prolog-system 'eclipse) "[ECLiPSe]") |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index ca9c3c6e6ef..7a90f0bb5ee 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3591,9 +3591,7 @@ list is returned as is." | |||
| 3591 | (define-derived-mode python-mode prog-mode "Python" | 3591 | (define-derived-mode python-mode prog-mode "Python" |
| 3592 | "Major mode for editing Python files. | 3592 | "Major mode for editing Python files. |
| 3593 | 3593 | ||
| 3594 | \\{python-mode-map} | 3594 | \\{python-mode-map}" |
| 3595 | Entry to this mode calls the value of `python-mode-hook' | ||
| 3596 | if that value is non-nil." | ||
| 3597 | (set (make-local-variable 'tab-width) 8) | 3595 | (set (make-local-variable 'tab-width) 8) |
| 3598 | (set (make-local-variable 'indent-tabs-mode) nil) | 3596 | (set (make-local-variable 'indent-tabs-mode) nil) |
| 3599 | 3597 | ||
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index fda7d6b6852..eabb222a84b 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el | |||
| @@ -210,9 +210,7 @@ start an inferior Scheme using the more general `cmuscheme' package. | |||
| 210 | Commands: | 210 | Commands: |
| 211 | Delete converts tabs to spaces as it moves back. | 211 | Delete converts tabs to spaces as it moves back. |
| 212 | Blank lines separate paragraphs. Semicolons start comments. | 212 | Blank lines separate paragraphs. Semicolons start comments. |
| 213 | \\{scheme-mode-map} | 213 | \\{scheme-mode-map}" |
| 214 | Entry to this mode calls the value of `scheme-mode-hook' | ||
| 215 | if that value is non-nil." | ||
| 216 | (scheme-mode-variables)) | 214 | (scheme-mode-variables)) |
| 217 | 215 | ||
| 218 | (defgroup scheme nil | 216 | (defgroup scheme nil |