branch: externals/ergoemacs-mode
commit a87fae7a2c413a6fd6b7d23dc8e159e400b10e8a
Author: Andrey Kotlarski <[email protected]>
Commit: Andrey Kotlarski <[email protected]>
Fix passing of multiple forms for evaluation on new emacs process
launch in ergoemacs-map-properties--get-original-global-map.
---
ergoemacs-map-properties.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ergoemacs-map-properties.el b/ergoemacs-map-properties.el
index 93bc19e..87f4d0d 100644
--- a/ergoemacs-map-properties.el
+++ b/ergoemacs-map-properties.el
@@ -651,7 +651,7 @@ These keymaps are saved in
`ergoemacs-map-properties--hook-map-hash'."
(ergoemacs-timing ergoemacs-create-global
(let* ((emacs-exe (ergoemacs-emacs-exe))
(default-directory (expand-file-name (file-name-directory
(locate-library "ergoemacs-mode"))))
- (cmd (format "%s -L %s --batch --load \"ergoemacs-mode\" -Q
--eval \"(ergoemacs-map-properties--default-global-gen) (kill-emacs)\""
emacs-exe default-directory)))
+ (cmd (format "%s -L %s --batch --load \"ergoemacs-mode\" -Q
--eval \"(progn (ergoemacs-map-properties--default-global-gen) (kill-emacs))\""
emacs-exe default-directory)))
(message "%s" (shell-command-to-string cmd))
(ergoemacs-map-properties--get-original-global-map))))))))