diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-10-15 04:49:55 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-10-15 04:49:55 +0000 |
commit | 30cdf899d795651977cd4b4b761671024f06f747 (patch) | |
tree | 156ad2f8267e00277e42fb9852eaf0155e1f351e /lisp/diff-mode.el | |
parent | 70e58f900243cdddd46910ce406bbfe2f5767891 (diff) | |
download | emacs-30cdf899d795651977cd4b4b761671024f06f747.tar.gz |
(diff-find-file-name): Fix regexp.
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r-- | lisp/diff-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 682d2e912e0..42fd7edbfcb 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -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)) |