]> git.eshelyaron.com Git - emacs.git/commitdiff
(diff-find-file-name): Fix regexp.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 15 Oct 2000 04:49:55 +0000 (04:49 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 15 Oct 2000 04:49:55 +0000 (04:49 +0000)
lisp/diff-mode.el

index 682d2e912e0dd45baae7003e829c1a542e2695ae..42fd7edbfcb45e347893858b3fbc7303389e6d6b 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
 ;; Keywords: patch diff
-;; Revision: $Id: diff-mode.el,v 1.27 2000/10/03 18:36:36 monnier Exp $
+;; Revision: $Id: diff-mode.el,v 1.28 2000/10/04 21:29:59 miles Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -413,7 +413,7 @@ Non-nil OLD means that we want the old file."
                       (progn (diff-hunk-prev) (point))
                     (error (point-min)))))
           (header-files
-           (if (looking-at "[-*][-*][-*] \\(\\S-+\\)\\s-.*\n[-+][-+][-+] \\(\\S-+\\)\\s-.*$")
+           (if (looking-at "[-*][-*][-*] \\(\\S-+\\)\\(\\s-.*\\)?\n[-+][-+][-+] \\(\\S-+\\)")
                (list (if old (match-string 1) (match-string 2))
                      (if old (match-string 2) (match-string 1)))
              (forward-line 1) nil))