Mercurial > emacs
changeset 109000:0507a7e69be1
Close bug#6361.
* lisp/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
older than version 1.6.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 12 Jun 2010 00:34:36 -0700 |
parents | ea40472a86d3 |
children | fe1cb647c842 |
files | lisp/ChangeLog lisp/vc-svn.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Jun 12 00:25:20 2010 -0700 +++ b/lisp/ChangeLog Sat Jun 12 00:34:36 2010 -0700 @@ -1,3 +1,8 @@ +2010-06-12 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change) + + * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions + older than version 1.6. (Bug#6361) + 2010-06-12 Helmut Eller <eller.helmut@gmail.com> * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
--- a/lisp/vc-svn.el Sat Jun 12 00:25:20 2010 -0700 +++ b/lisp/vc-svn.el Sat Jun 12 00:34:36 2010 -0700 @@ -170,7 +170,7 @@ (?? . unregistered) ;; This is what vc-svn-parse-status does. (?~ . edited))) - (re (if remote "^\\(.\\)...... \\([ *]\\) +\\(?:[-0-9]+\\)? \\(.*\\)$" + (re (if remote "^\\(.\\)......? \\([ *]\\) +\\(?:[-0-9]+\\)? \\(.*\\)$" ;; Subexp 2 is a dummy in this case, so the numbers match. "^\\(.\\)....\\(.\\) \\(.*\\)$")) result)