summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs/.config/emacs-kj/lisp/kj-lib.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/emacs/.config/emacs-kj/lisp/kj-lib.el b/emacs/.config/emacs-kj/lisp/kj-lib.el
index 117584b..82623bb 100644
--- a/emacs/.config/emacs-kj/lisp/kj-lib.el
+++ b/emacs/.config/emacs-kj/lisp/kj-lib.el
@@ -1,7 +1,6 @@
;;; -*- lexical-binding: t; -*-
(defmacro define-repeating-key (keymap key cmd &optional desc)
- "DEF may be a cons cell (DESCRIPTION . FUNC) or a command."
`(let ((def
,(if desc
`'(,desc ,cmd)
@@ -10,8 +9,3 @@
(put ',cmd 'repeat-map ',keymap)))
(provide 'kj-lib)
-
-(macroexpand '(define-repeating-key map "." mc/mark-next-like-this ))
-(define-repeating-map)
-
-(macroexpand '(define-repeating-key map "." mc/mark-next-like-this "→ this"))