branch: externals/agitate commit 412834ce07c66be32ab231670b360d3a379ac63e Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Fix file no dir in agitate--log-edit-extract-file --- agitate.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agitate.el b/agitate.el index 730e0efa7e..b8d7477e09 100644 --- a/agitate.el +++ b/agitate.el @@ -163,8 +163,8 @@ Add this function to the `diff-mode-hook'." (car files))) (name (file-name-nondirectory file))) (if with-file-extension - file - (file-name-sans-extension file)))) + name + (file-name-sans-extension name)))) ;;;###autoload (defun agitate-log-edit-insert-file-name (&optional with-file-extension)