Skip to content

Commit

Permalink
Update source, eask-core.el
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 18, 2023
1 parent 766ec54 commit fa0d95f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions eask-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ Argument BODY are forms for execution."
"Execute BODY with message."
(declare (indent 0) (debug t))
`(let (inhibit-message) ,@body))
(defcustom eask-buffer-name "*eask*"
"Buffer name is used for temporary storage throughout the life cycle."
:type 'string
:group 'eask)
(defmacro eask-with-buffer (&rest body)
"Create a temporary buffer (for this program), and evaluate BODY there."
(declare (indent 0) (debug t))
Expand Down Expand Up @@ -614,6 +610,8 @@ and INHERIT-INPUT-METHOD see function `read-string' for more information."
(defun eask--column-at-point (point)
"Get column at POINT."
(save-excursion (goto-char point) (current-column)))
(defconst eask-buffer-name "*eask*"
"Buffer name is used for temporary storage throughout the life cycle.")
(defun eask-progress-seq (prefix sequence suffix func)
"Shorthand to progress SEQUENCE of task.

Expand Down

0 comments on commit fa0d95f

Please sign in to comment.