From: Juanma Barranquero Date: Mon, 4 Jul 2005 03:20:48 +0000 (+0000) Subject: (python): Finish `defgroup' description with period. X-Git-Tag: emacs-pretest-22.0.90~8392 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=419557b9e780e234d814e534fd3544354a7c9dc7;p=emacs.git (python): Finish `defgroup' description with period. (inferior-python-mode): "?\ " -> "?\s". --- 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 @@ (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))