]> git.eshelyaron.com Git - emacs.git/commitdiff
(python): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:20:48 +0000 (03:20 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:20:48 +0000 (03:20 +0000)
(inferior-python-mode): "?\ " -> "?\s".

lisp/progmodes/python.el

index 70ea8b4bac62ae6acf851db230c66af5067cdc01..d31ac29c01f8e6f8b88c71e2f06e188e8e7a5d15 100644 (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))