emacs/lisp/+zzz-to-char.el

17 lines
348 B
EmacsLisp

;;; +zzz-to-char.el -*- lexical-binding: t; -*-
;;; Commentary:
;;
;;; Code:
(defun +zzz-to-char (prefix)
"Call `zzz-to-char' or `zzz-up-to-char' with PREFIX arg."
(interactive "P")
(call-interactively
(if prefix #'zzz-up-to-char #'zzz-to-char)))
(provide '+zzz-to-char)
;;; +zzz-to-char.el ends here