diff options
author | Protesilaos Stavrou <info@protesilaos.com> | 2021-02-16 12:30:53 +0200 |
---|---|---|
committer | Xinglu Chen <public@yoctocell.xyz> | 2021-02-16 11:54:16 +0100 |
commit | f18cffa68a4c017014c1edf148f56786027c283b (patch) | |
tree | 4c7cf0b40f219024b995459b7e544b48f24bdaa8 | |
parent | 272f8f4789b6408e70bc1aa2f5727f6a79d385c2 (diff) |
Rewrite 'default-directory' as a variable
-rw-r--r-- | git-email.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-email.el b/git-email.el index 78db393..fd2fd95 100644 --- a/git-email.el +++ b/git-email.el @@ -222,7 +222,7 @@ Falls back to `default-directory'." (and (bound-and-true-p project-list-file) (cdr (project-current))) (vc-root-dir) - (default-directory)))) + default-directory))) dir)) |