Skip to content

Commit 5d6b85a

Browse files
committed
fix(_prepare.el): Defconst eask-buffer-name
1 parent 3eee78a commit 5d6b85a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lisp/_prepare.el

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,8 @@ and INHERIT-INPUT-METHOD see function `read-string' for more information."
315315
"Get column at POINT."
316316
(save-excursion (goto-char point) (current-column)))
317317

318-
(defcustom eask-buffer-name "*eask*"
319-
"Buffer name is used for temporary storage throughout the life cycle."
320-
:type 'string
321-
:group 'eask)
318+
(defconst eask-buffer-name "*eask*"
319+
"Buffer name is used for temporary storage throughout the life cycle.")
322320

323321
(defmacro eask-with-buffer (&rest body)
324322
"Create a temporary buffer (for this program), and evaluate BODY there."

0 commit comments

Comments
 (0)