summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-10-16 17:27:58 +0300
committerAlex Kost <alezost@gmail.com>2015-10-17 18:56:50 +0300
commit7c0b02f5ae94bd9da1c2ee43cebbef28407f71a8 (patch)
tree95979e66f008de5a004400dadec9a3f0a25fab22 /emacs
parent2134228a7d8f14f0972a3526924d8cb4540b04c2 (diff)
downloadpatches-7c0b02f5ae94bd9da1c2ee43cebbef28407f71a8.tar
patches-7c0b02f5ae94bd9da1c2ee43cebbef28407f71a8.tar.gz
emacs: Improve file names of generated graphs.
Suggested by Ludovic Courtès <ludo@gnu.org>. * emacs/guix-external.el (guix-png-file-name): Change prefix of a file name to "guix-emacs-graph-" to avoid possible conflicts.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/guix-external.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/guix-external.el b/emacs/guix-external.el
index d233473abe..580676ef91 100644
--- a/emacs/guix-external.el
+++ b/emacs/guix-external.el
@@ -64,7 +64,7 @@ If ARGS is nil, use `guix-dot-default-arguments'."
"Return '.png' file name in the `temporary-file-directory'."
(concat (make-temp-name
(concat (file-name-as-directory temporary-file-directory)
- "graph-"))
+ "guix-emacs-graph-"))
".png"))
(provide 'guix-external)