Skip to content

Commit

Permalink
fix(core): fix deprecated pcase statement
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jul 24, 2023
1 parent ef5d4f2 commit 5d8ed44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elisp/+minemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ If N and M = 1, there's no benefit to using this macro over `remove-hook'.
(pcase shell-file-name
((rx "fish") "-lc")
((rx (or "tsch" "csh")) "-dc")
(t "-ilc")))
(_ "-ilc")))

;; https://emacs.stackexchange.com/a/21432/37002
(defun +shell-command-to-string-ignore-stderr (command)
Expand Down

0 comments on commit 5d8ed44

Please sign in to comment.