# HG changeset patch # User Richard M. Stallman # Date 1158429371 0 # Node ID 063a265bc04faf7c945c3365e993840717557cb1 # Parent 59a167976c44eac80e515f916d2c30a8e5ef1d59 (python-preoutput-filter): Fix arg order to string-match. diff -r 59a167976c44 -r 063a265bc04f lisp/progmodes/python.el --- 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)))