mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* lisp/vc/diff-mode.el (diff-filename-drop-dir): Match backslashes.
This commit is contained in:
parent
9f2b1c43c9
commit
c499c2f67b
1 changed files with 1 additions and 1 deletions
|
|
@ -1055,7 +1055,7 @@ them, instead."
|
|||
(defvar diff-remembered-defdir nil)
|
||||
|
||||
(defun diff-filename-drop-dir (file)
|
||||
(and (string-match "/" file) (substring file (match-end 0))))
|
||||
(and (string-match "[/\\]" file) (substring file (match-end 0))))
|
||||
|
||||
(defun diff-merge-strings (ancestor from to)
|
||||
"Merge the diff between ANCESTOR and FROM into TO.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue