diff options
author | Hugo Hörnquist <hugo@lysator.liu.se> | 2022-07-31 00:15:12 +0000 |
---|---|---|
committer | Hugo Hörnquist <hugo@lysator.liu.se> | 2022-07-31 00:15:12 +0000 |
commit | 224302fe7a3f4dc711638958aa993f5e6816fe99 (patch) | |
tree | 8a86f565c661a45ff8e470f0ba5b0af59a9c0a07 /elisp | |
parent | 115e1e39278e2ca32fa032b4d985eb6171935a83 (diff) | |
download | geiser-224302fe7a3f4dc711638958aa993f5e6816fe99.tar.gz geiser-224302fe7a3f4dc711638958aa993f5e6816fe99.tar.bz2 |
Add missing space when load path addition fails.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-compile.el | 2 |
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) |