diff options
-rw-r--r-- | init.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2285,7 +2285,7 @@ (defun elisp-macroexpand-all (form) (interactive (list (form-at-point 'sexp))) - (elisp-pp (cl-macroexpand-all form))) + (elisp-pp (macroexpand-all form))) (defun elisp-find-definition (name) (interactive (list (thing-at-point 'symbol))) @@ -2328,8 +2328,8 @@ (use-package elisp-mode :bind (:map emacs-lisp-mode-map - (("C-c C-m" . elisp-macroexpand) - ("C-c C-M" . elisp-macroexpand-all) + (("C-c C-M" . emacs-lisp-macroexpand) + ("C-c C-m" . elisp-macroexpand-all) ("C-c C-k" . elisp-bytecompile-and-load) ("C-c C-p" . pp-eval-last-sexp) ("M-." . elisp-find-definition) |