1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-31 20:02:42 +00:00

(diff-find-file-name): Fix regexp.

This commit is contained in:
Stefan Monnier 2000-10-15 04:49:55 +00:00
parent 70e58f9002
commit 30cdf899d7

View 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))