summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.org b/init.org
index 4285c26..1295068 100644
--- a/init.org
+++ b/init.org
@@ -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)