diff options
| author | Miles Bader | 2005-07-07 12:43:14 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-07-07 12:43:14 +0000 |
| commit | d3e4babdd1267fb5690a17949196640a47c6f159 (patch) | |
| tree | 968a42dfa187e492f9ce188aaf669d0cebf4bfe2 /lisp/progmodes/python.el | |
| parent | eeb88b27e1dbd3f412aa684d44e4a784f6e536a2 (diff) | |
| parent | a5717394ea6fbd7ea179c362646f4495f88245cb (diff) | |
| download | emacs-d3e4babdd1267fb5690a17949196640a47c6f159.tar.gz emacs-d3e4babdd1267fb5690a17949196640a47c6f159.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-68
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 459-473)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 86-87)
- Update from CVS
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 70ea8b4bac6..f5431431902 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -21,8 +21,8 @@ | |||
| 21 | 21 | ||
| 22 | ;; You should have received a copy of the GNU General Public License | 22 | ;; You should have received a copy of the GNU General Public License |
| 23 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 23 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 24 | ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 24 | ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 | ;; Boston, MA 02111-1307, USA. | 25 | ;; Boston, MA 02110-1301, USA. |
| 26 | 26 | ||
| 27 | ;;; Commentary: | 27 | ;;; Commentary: |
| 28 | 28 | ||
| @@ -70,7 +70,7 @@ | |||
| 70 | (autoload 'compilation-start "compile") | 70 | (autoload 'compilation-start "compile") |
| 71 | 71 | ||
| 72 | (defgroup python nil | 72 | (defgroup python nil |
| 73 | "Silly walks in the Python language" | 73 | "Silly walks in the Python language." |
| 74 | :group 'languages | 74 | :group 'languages |
| 75 | :version "22.1" | 75 | :version "22.1" |
| 76 | :link '(emacs-commentary-link "python")) | 76 | :link '(emacs-commentary-link "python")) |
| @@ -1067,7 +1067,7 @@ For running multiple processes in multiple buffers, see `python-buffer'. | |||
| 1067 | ;; Still required by `comint-redirect-send-command', for instance | 1067 | ;; Still required by `comint-redirect-send-command', for instance |
| 1068 | ;; (and we need to match things like `>>> ... >>> '): | 1068 | ;; (and we need to match things like `>>> ... >>> '): |
| 1069 | (set (make-local-variable 'comint-prompt-regexp) | 1069 | (set (make-local-variable 'comint-prompt-regexp) |
| 1070 | (rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\ ))))) | 1070 | (rx (and line-start (1+ (and (repeat 3 (any ">.")) ?\s))))) |
| 1071 | (set (make-local-variable 'compilation-error-regexp-alist) | 1071 | (set (make-local-variable 'compilation-error-regexp-alist) |
| 1072 | python-compilation-regexp-alist) | 1072 | python-compilation-regexp-alist) |
| 1073 | (compilation-shell-minor-mode 1)) | 1073 | (compilation-shell-minor-mode 1)) |