diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 185f24ea..6e72e7e7 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -161,6 +161,11 @@ ;; functions ;; ============================================================================= +(defun display-prefix (arg) + "Display the value of the raw prefix arg." + (interactive "P") + (message "%s" arg)) + (defmacro imalison:prefix-alternative (name default alternative) `(defun ,name (arg) (interactive "P") (if arg (call-interactively (quote ,alternative))