[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r114968: * lisp/progmodes/python.el (python-mode): R
From: |
Bozhidar Batsov |
Subject: |
[Emacs-diffs] trunk r114968: * lisp/progmodes/python.el (python-mode): Remove incorrect text from docstring. |
Date: |
Tue, 05 Nov 2013 09:48:01 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 114968
revision-id: address@hidden
parent: address@hidden
committer: Bozhidar Batsov <address@hidden>
branch nick: trunk
timestamp: Tue 2013-11-05 11:47:47 +0200
message:
* 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.
modified:
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/emacs-lisp/lisp-mode.el lispmode.el-20091113204419-o5vbwnq5f7feedwu-205
lisp/progmodes/prolog.el prolog.el-20091113204419-o5vbwnq5f7feedwu-98
lisp/progmodes/python.el python.el-20091113204419-o5vbwnq5f7feedwu-3008
lisp/progmodes/scheme.el scheme.el-20091113204419-o5vbwnq5f7feedwu-122
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2013-11-05 09:30:15 +0000
+++ b/lisp/ChangeLog 2013-11-05 09:47:47 +0000
@@ -1,5 +1,11 @@
2013-11-05 Bozhidar Batsov <address@hidden>
+ * 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 <address@hidden>
=== modified file 'lisp/emacs-lisp/lisp-mode.el'
--- a/lisp/emacs-lisp/lisp-mode.el 2013-10-24 17:49:12 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el 2013-11-05 09:47:47 +0000
@@ -700,9 +700,7 @@
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 @@
\\{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 @@
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 ()
=== modified file 'lisp/progmodes/prolog.el'
--- a/lisp/progmodes/prolog.el 2013-10-25 15:23:45 +0000
+++ b/lisp/progmodes/prolog.el 2013-11-05 09:47:47 +0000
@@ -1109,9 +1109,7 @@
`\\[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]")
=== modified file 'lisp/progmodes/python.el'
--- a/lisp/progmodes/python.el 2013-11-04 19:14:58 +0000
+++ b/lisp/progmodes/python.el 2013-11-05 09:47:47 +0000
@@ -3591,9 +3591,7 @@
(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)
=== modified file 'lisp/progmodes/scheme.el'
--- a/lisp/progmodes/scheme.el 2013-06-15 00:37:49 +0000
+++ b/lisp/progmodes/scheme.el 2013-11-05 09:47:47 +0000
@@ -210,9 +210,7 @@
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r114968: * lisp/progmodes/python.el (python-mode): Remove incorrect text from docstring.,
Bozhidar Batsov <=