emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99852: Close bug#6361.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99852: Close bug#6361.
Date: Sat, 12 Jun 2010 00:34:36 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99852
author: Bob Rogers <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Sat 2010-06-12 00:34:36 -0700
message:
  Close bug#6361.
  
  * lisp/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
  older than version 1.6.
modified:
  lisp/ChangeLog
  lisp/vc-svn.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-12 07:06:15 +0000
+++ b/lisp/ChangeLog    2010-06-12 07:34:36 +0000
@@ -1,3 +1,8 @@
+2010-06-12  Bob Rogers  <address@hidden>  (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  <address@hidden>
 
        * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',

=== modified file 'lisp/vc-svn.el'
--- a/lisp/vc-svn.el    2010-02-05 19:20:17 +0000
+++ b/lisp/vc-svn.el    2010-06-12 07:34:36 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]