aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-03-19 15:37:15 +0000
committerJuanma Barranquero2007-03-19 15:37:15 +0000
commite2411870e6a67a909e75f01c816235ddb5ca28d3 (patch)
treed96dbe59a0f0156549aa095f3eb4419981b41d45
parentd55ebb63f03d124c98cea27c469f5b452c68e67f (diff)
downloademacs-e2411870e6a67a909e75f01c816235ddb5ca28d3.tar.gz
emacs-e2411870e6a67a909e75f01c816235ddb5ca28d3.zip
(python-default-template): Doc fix.
(python-buffer): Fix typo in docstring.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/python.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 91a4c6a37fe..64f8178d5e3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -5,6 +5,9 @@
5 5
62007-03-19 Juanma Barranquero <lekktu@gmail.com> 62007-03-19 Juanma Barranquero <lekktu@gmail.com>
7 7
8 * progmodes/python.el (python-default-template): Doc fix.
9 (python-buffer): Fix typo in docstring.
10
8 * isearchb.el (isearchb-follow-char): 11 * isearchb.el (isearchb-follow-char):
9 * subr.el (def-edebug-spec): Fix typo in docstring. 12 * subr.el (def-edebug-spec): Fix typo in docstring.
10 13
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 6c37fb859e1..226d4bdc62d 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1150,7 +1150,7 @@ modified by the user. Additional arguments are added when the command
1150is used by `run-python' et al.") 1150is used by `run-python' et al.")
1151 1151
1152(defvar python-buffer nil 1152(defvar python-buffer nil
1153 "*The current python process buffer. 1153 "*The current Python process buffer.
1154 1154
1155Commands that send text from source buffers to Python processes have 1155Commands that send text from source buffers to Python processes have
1156to choose a process to send to. This is determined by buffer-local 1156to choose a process to send to. This is determined by buffer-local
@@ -2088,7 +2088,7 @@ The default contents correspond to the elements of `python-skeletons'.")
2088 > _ \n) 2088 > _ \n)
2089 2089
2090(defvar python-default-template "if" 2090(defvar python-default-template "if"
2091 "Default template to expand by `python-insert-template'. 2091 "Default template to expand by `python-expand-template'.
2092Updated on each expansion.") 2092Updated on each expansion.")
2093 2093
2094(defun python-expand-template (name) 2094(defun python-expand-template (name)