# HG changeset patch # User Juanma Barranquero # Date 1120447248 0 # Node ID 69990675200d32e2a39fc869a5cd514a705f1a16 # Parent 6182d0adade20d0d1310594e6f47b730f9af8fab (python): Finish `defgroup' description with period. (inferior-python-mode): "?\ " -> "?\s". diff -r 6182d0adade2 -r 69990675200d lisp/progmodes/python.el --- a/lisp/progmodes/python.el Mon Jul 04 03:18:35 2005 +0000 +++ b/lisp/progmodes/python.el Mon Jul 04 03:20:48 2005 +0000 @@ -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 @@ ;; 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))