aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 03:20:48 +0000
committerJuanma Barranquero2005-07-04 03:20:48 +0000
commit419557b9e780e234d814e534fd3544354a7c9dc7 (patch)
tree45428a10313021262e9ff482e04311fb4c1aa8b2 /lisp/progmodes/python.el
parent73efac495526827eba66ecf428b1ee12894e4d15 (diff)
downloademacs-419557b9e780e234d814e534fd3544354a7c9dc7.tar.gz
emacs-419557b9e780e234d814e534fd3544354a7c9dc7.zip
(python): Finish `defgroup' description with period.
(inferior-python-mode): "?\ " -> "?\s".
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 70ea8b4bac6..d31ac29c01f 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -70,7 +70,7 @@
70(autoload 'compilation-start "compile") 70(autoload 'compilation-start "compile")
71 71
72(defgroup python nil 72(defgroup python nil
73 "Silly walks in the Python language" 73 "Silly walks in the Python language."
74 :group 'languages 74 :group 'languages
75 :version "22.1" 75 :version "22.1"
76 :link '(emacs-commentary-link "python")) 76 :link '(emacs-commentary-link "python"))
@@ -1067,7 +1067,7 @@ For running multiple processes in multiple buffers, see `python-buffer'.
1067 ;; Still required by `comint-redirect-send-command', for instance 1067 ;; Still required by `comint-redirect-send-command', for instance
1068 ;; (and we need to match things like `>>> ... >>> '): 1068 ;; (and we need to match things like `>>> ... >>> '):
1069 (set (make-local-variable 'comint-prompt-regexp) 1069 (set (make-local-variable 'comint-prompt-regexp)
1070 (rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\ ))))) 1070 (rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\s)))))
1071 (set (make-local-variable 'compilation-error-regexp-alist) 1071 (set (make-local-variable 'compilation-error-regexp-alist)
1072 python-compilation-regexp-alist) 1072 python-compilation-regexp-alist)
1073 (compilation-shell-minor-mode 1)) 1073 (compilation-shell-minor-mode 1))