blob: b3f27f74f1aa05b073957e71ff5043ac67a908a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;;; +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
|