summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-07-31 00:15:12 +0000
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-31 00:15:12 +0000
commit224302fe7a3f4dc711638958aa993f5e6816fe99 (patch)
tree8a86f565c661a45ff8e470f0ba5b0af59a9c0a07
parent115e1e39278e2ca32fa032b4d985eb6171935a83 (diff)
downloadgeiser-224302fe7a3f4dc711638958aa993f5e6816fe99.tar.gz
geiser-224302fe7a3f4dc711638958aa993f5e6816fe99.tar.bz2
Add missing space when load path addition fails.
-rw-r--r--elisp/geiser-compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-compile.el b/elisp/geiser-compile.el
index 903c570..e05459c 100644
--- a/elisp/geiser-compile.el
+++ b/elisp/geiser-compile.el
@@ -83,7 +83,7 @@ add, defaulting to the current buffer's directory."
(interactive "DDirectory to add: ")
(let* ((c `(:eval (:ge add-to-load-path ,(expand-file-name path))))
(r (geiser-eval--send/result c)))
- (message "%s%s added to load path" path (if r "" "couldn't be"))))
+ (message "%s%s added to load path" path (if r "" " couldn't be"))))
(provide 'geiser-compile)