aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/python.el2
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 @@
12006-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
12006-09-16 Richard Stallman <rms@gnu.org> 62006-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)))