aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorRichard M. Stallman2006-09-16 17:56:17 +0000
committerRichard M. Stallman2006-09-16 17:56:17 +0000
commitbe8b7dbd649cd28075352a5a459bd3c62cf249fc (patch)
tree3938eba2c3ddf3de6498abf70595795f6801c8ae /lisp/progmodes/python.el
parent9af0a0b9c876bbbcc33401022dd2ab240555cdff (diff)
downloademacs-be8b7dbd649cd28075352a5a459bd3c62cf249fc.tar.gz
emacs-be8b7dbd649cd28075352a5a459bd3c62cf249fc.zip
(python-preoutput-filter): Fix arg order to string-match.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
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)))