(python): Finish `defgroup' description with period.

(inferior-python-mode): "?\ " -> "?\s".
This commit is contained in:
Juanma Barranquero 2005-07-04 03:20:48 +00:00
parent 73efac4955
commit 419557b9e7

View file

@ -70,7 +70,7 @@
(autoload 'compilation-start "compile")
(defgroup python nil
"Silly walks in the Python language"
"Silly walks in the Python language."
:group 'languages
:version "22.1"
:link '(emacs-commentary-link "python"))
@ -1067,7 +1067,7 @@ For running multiple processes in multiple buffers, see `python-buffer'.
;; Still required by `comint-redirect-send-command', for instance
;; (and we need to match things like `>>> ... >>> '):
(set (make-local-variable 'comint-prompt-regexp)
(rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\ )))))
(rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\s)))))
(set (make-local-variable 'compilation-error-regexp-alist)
python-compilation-regexp-alist)
(compilation-shell-minor-mode 1))