diff options
| author | Richard M. Stallman | 2006-09-16 17:56:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-09-16 17:56:17 +0000 |
| commit | be8b7dbd649cd28075352a5a459bd3c62cf249fc (patch) | |
| tree | 3938eba2c3ddf3de6498abf70595795f6801c8ae | |
| parent | 9af0a0b9c876bbbcc33401022dd2ab240555cdff (diff) | |
| download | emacs-be8b7dbd649cd28075352a5a459bd3c62cf249fc.tar.gz emacs-be8b7dbd649cd28075352a5a459bd3c62cf249fc.zip | |
(python-preoutput-filter): Fix arg order to string-match.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df9232d40e0..0b4d6147678 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> | ||
| 2 | |||
| 3 | * progmodes/python.el (python-preoutput-filter): | ||
| 4 | Fix arg order to string-match. | ||
| 5 | |||
| 1 | 2006-09-16 Richard Stallman <rms@gnu.org> | 6 | 2006-09-16 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to | 8 | * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 712d75afff9..0387c05134e 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1289,7 +1289,7 @@ Don't save anything for STR matching `inferior-python-filter-regexp'." | |||
| 1289 | ;; Maybe we could be more selective here. | 1289 | ;; Maybe we could be more selective here. |
| 1290 | (if (zerop (length res)) | 1290 | (if (zerop (length res)) |
| 1291 | (not (bolp)) | 1291 | (not (bolp)) |
| 1292 | (string-match res ".\\'")))) | 1292 | (string-match ".\\'" res)))) |
| 1293 | ;; The need for this seems to be system-dependent: | 1293 | ;; The need for this seems to be system-dependent: |
| 1294 | ;; What is this all about, exactly? --Stef | 1294 | ;; What is this all about, exactly? --Stef |
| 1295 | ;; (if (and (eq ?. (aref s 0))) | 1295 | ;; (if (and (eq ?. (aref s 0))) |