]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/python.el (python-mode): Remove incorrect text from docstring.
authorBozhidar Batsov <bozhidar@batsov.com>
Tue, 5 Nov 2013 09:47:47 +0000 (11:47 +0200)
committerBozhidar Batsov <bozhidar@batsov.com>
Tue, 5 Nov 2013 09:47:47 +0000 (11:47 +0200)
* 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.

lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el
lisp/progmodes/prolog.el
lisp/progmodes/python.el
lisp/progmodes/scheme.el

index 10512265e71b73e707f69bda1e66ed73c94d2805..67de518e56dd4b93cf522596584933fc078eb0d0 100644 (file)
@@ -1,5 +1,11 @@
 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
 
+       * progmodes/python.el (python-mode): Remove incorrect text from docstring.
+       * progmodes/scheme.el (scheme-mode): Remove incorrect text from docstring.
+       * progmodes/prolog.el (prolog-mode): Remove incorrect text from docstring.
+       * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode, emacs-lisp-mode):
+       Remove incorrect text from docstring.
+
        * progmodes/ruby-mode.el (ruby-mode): Remove incorrect text from docstring.
 
 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
index 8d4e6e3a20a41068530c1905238389e10bfdcfe3..f4e9b311acce991fb18957747cbc34634a0fdcee 100644 (file)
@@ -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 ()
index 5a2d7c1cf0e08d242c3a4391ad53e593ca1b025c..c766189c4d27d5816c5020708d2b1e3439d2f7e2 100644 (file)
@@ -1109,9 +1109,7 @@ To find out what version of Prolog mode you are running, enter
 `\\[prolog-mode-version]'.
 
 Commands:
-\\{prolog-mode-map}
-Entry to this mode calls the value of `prolog-mode-hook'
-if that value is non-nil."
+\\{prolog-mode-map}"
   (setq mode-name (concat "Prolog"
                           (cond
                            ((eq prolog-system 'eclipse) "[ECLiPSe]")
index ca9c3c6e6efb34086779d4ef3f36b50da13c71b9..7a90f0bb5ee0cf7cc0380eded04c2e4d1987125b 100644 (file)
@@ -3591,9 +3591,7 @@ list is returned as is."
 (define-derived-mode python-mode prog-mode "Python"
   "Major mode for editing Python files.
 
-\\{python-mode-map}
-Entry to this mode calls the value of `python-mode-hook'
-if that value is non-nil."
+\\{python-mode-map}"
   (set (make-local-variable 'tab-width) 8)
   (set (make-local-variable 'indent-tabs-mode) nil)
 
index fda7d6b6852673af48befb5ff7dd6ba12ad53d1c..eabb222a84bb1544e241c2fb0cb0a18317ac6bb3 100644 (file)
@@ -210,9 +210,7 @@ start an inferior Scheme using the more general `cmuscheme' package.
 Commands:
 Delete converts tabs to spaces as it moves back.
 Blank lines separate paragraphs.  Semicolons start comments.
-\\{scheme-mode-map}
-Entry to this mode calls the value of `scheme-mode-hook'
-if that value is non-nil."
+\\{scheme-mode-map}"
   (scheme-mode-variables))
 
 (defgroup scheme nil