mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-06 01:02:04 -08:00
fix: void-function string-empty-p in Emacs 27.x
Doom core will always support 27.x (for CLI/noninteractive use), but string-empty-p was in subr-x up until 28, which isn't worth loading this early in the startup process.
This commit is contained in:
parent
0dfb874b57
commit
ffe76ec872
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@
|
|||
;; startup more verbose sooner.
|
||||
(let ((debug (getenv-internal "DEBUG")))
|
||||
(when (stringp debug)
|
||||
(if (string-empty-p debug)
|
||||
(if (string= debug "")
|
||||
(setenv "DEBUG" nil)
|
||||
(setq init-file-debug t
|
||||
debug-on-error t))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue