[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/progmodes/python.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/progmodes/python.el |
Date: |
Sun, 03 Jul 2005 23:20:48 -0400 |
Index: emacs/lisp/progmodes/python.el
diff -c emacs/lisp/progmodes/python.el:1.29 emacs/lisp/progmodes/python.el:1.30
*** emacs/lisp/progmodes/python.el:1.29 Wed Jun 29 06:58:42 2005
--- emacs/lisp/progmodes/python.el Mon Jul 4 03:20:48 2005
***************
*** 70,76 ****
(autoload 'compilation-start "compile")
(defgroup python nil
! "Silly walks in the Python language"
:group 'languages
:version "22.1"
:link '(emacs-commentary-link "python"))
--- 70,76 ----
(autoload 'compilation-start "compile")
(defgroup python nil
! "Silly walks in the Python language."
:group 'languages
:version "22.1"
:link '(emacs-commentary-link "python"))
***************
*** 1067,1073 ****
;; 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 ">.")) ?\ )))))
(set (make-local-variable 'compilation-error-regexp-alist)
python-compilation-regexp-alist)
(compilation-shell-minor-mode 1))
--- 1067,1073 ----
;; 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 ">.")) ?\s)))))
(set (make-local-variable 'compilation-error-regexp-alist)
python-compilation-regexp-alist)
(compilation-shell-minor-mode 1))
- [Emacs-diffs] Changes to emacs/lisp/progmodes/python.el,
Juanma Barranquero <=