summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-08-10 16:34:33 (GMT)
committerBarry Warsaw <barry@python.org>1998-08-10 16:34:33 (GMT)
commit71c3adb7ec8c82a49e713f658d93e69a01aed593 (patch)
tree2001f41678b8b62f5b905231e4fa3763df918374 /Misc
parent41a05c75d47f8d92fde8cd6bb98e05cdb094d3bb (diff)
downloadcpython-71c3adb7ec8c82a49e713f658d93e69a01aed593.zip
cpython-71c3adb7ec8c82a49e713f658d93e69a01aed593.tar.gz
cpython-71c3adb7ec8c82a49e713f658d93e69a01aed593.tar.bz2
#Typos from previous checkin
Diffstat (limited to 'Misc')
-rw-r--r--Misc/python-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index da96ea0..9d42b0c 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -437,7 +437,7 @@ Currently-active file is at the head of the list.")
"Regular expression matching Python backslash continuation lines.")
(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
- "Regular expression matching a blank or comment line."
+ "Regular expression matching a blank or comment line.")
(defconst py-outdent-re
(concat "\\(" (mapconcat 'identity
@@ -474,7 +474,7 @@ Currently-active file is at the head of the list.")
;; If you change this, you probably have to change py-current-defun
;; as well. This is only used by py-current-defun to find the name
;; for add-log.el.
- "Regular expression matching a function, method, or variable assignment."
+ "Regular expression matching a function, method, or variable assignment.")
(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
;; If you change this, you probably have to change py-current-defun