Mercurial > emacs
changeset 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 | 59a167976c44 |
children | 1eb51770045b |
files | lisp/progmodes/python.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)))