Skip to content

Commit

Permalink
fix: Address some melpazoid issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Aug 14, 2023
1 parent 89501f4 commit e30ba27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lisp/_prepare.el
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ Simply remove `--eask' for each option, like `--eask--strict' to `--strict'."
(t default-directory)))
(alist))
(dolist (cmd eask--command-list)
(push (cons cmd '(lambda (&rest _))) alist))
(push (cons cmd (lambda (&rest _))) alist))
(setq command-switch-alist (append command-switch-alist alist))
,@body)))

Expand Down Expand Up @@ -1530,9 +1530,9 @@ You can pass BUFFER-OR-NAME to replace current buffer."
(let ((max-column 0))
(while (not (eobp))
(forward-line 1)
(goto-char (line-beginning-position))
(beginning-of-line)
(insert " ")
(goto-char (line-end-position))
(end-of-line)
(setq max-column (max (current-column) max-column)))
(eask-msg (concat "''" (spaces-string max-column) "''"))
(eask-msg (ansi-white (buffer-string)))
Expand Down

0 comments on commit e30ba27

Please sign in to comment.