Mercurial > emacs
diff lisp/progmodes/python.el @ 72936:063a265bc04f
(python-preoutput-filter): Fix arg order to string-match.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 16 Sep 2006 17:56:11 +0000 |
| parents | 298499495f06 |
| children | 664e876d97fd b5c13d1564a9 |
line wrap: on
line diff
--- a/lisp/progmodes/python.el Sat Sep 16 17:55:13 2006 +0000 +++ b/lisp/progmodes/python.el Sat Sep 16 17:56:11 2006 +0000 @@ -1289,7 +1289,7 @@ ;; Maybe we could be more selective here. (if (zerop (length res)) (not (bolp)) - (string-match res ".\\'")))) + (string-match ".\\'" res)))) ;; The need for this seems to be system-dependent: ;; What is this all about, exactly? --Stef ;; (if (and (eq ?. (aref s 0)))
