]> code.delx.au - gnu-emacs-elpa/commitdiff
Further tweaks to the patch fixer-upper (for a/erc.el)
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 27 Dec 2015 20:34:54 +0000 (21:34 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 27 Dec 2015 20:35:08 +0000 (21:35 +0100)
packages/debbugs/debbugs-gnu.el

index 296538a25b9d757b04be4fee21ecda4448f63fcb..034f6f66d02ad5254e8e4f23071f5f978ee33190 100644 (file)
@@ -1421,21 +1421,26 @@ If given a prefix, patch in the branch directory instead."
   (goto-char (point-min))
   (re-search-forward diff-file-header-re nil t)
   (goto-char (match-beginning 0))
-  (let ((file-names (diff-hunk-file-names)))
-    (when (and file-names
-              (not (string-match "/" (car file-names))))
+  (let ((target-name (car (diff-hunk-file-names))))
+    (when (and target-name
+              (or (not (string-match "/" target-name))
+                  (and (string-match "^[ab]/" target-name)
+                       (not (file-exists-p
+                             (expand-file-name (substring target-name 2)
+                                               dir))))))
       ;; We have a simple patch that refers to a file somewhere in the
       ;; tree.  Find it.
       (when-let ((files (directory-files-recursively
-                        dir (concat "^" (regexp-quote (car file-names))
+                        dir (concat "^" (regexp-quote
+                                         (file-name-nondirectory target-name))
                                     "$"))))
        (when (re-search-forward (concat "^[+]+ "
-                                        (regexp-quote (car file-names))
-                                        "[ \t]")
+                                        (regexp-quote target-name)
+                                        "\\([ \t\n]\\)")
                                 nil t)
          (replace-match (concat "+++ a"
                                 (substring (car files) (length dir))
-                                "\t")
+                                (match-string 1))
                         nil t))))))
 
 (defun debbugs-gnu-find-contributor (string)