mirror of
https://github.com/emacscollective/emacs.g.git
synced 2025-06-07 08:14:16 -04:00
Emacsg: init: Silence bogus warnings on newer Emacsen
I mean, what am I supposed to do here? 26.1 doesn't want to use `if-let' and 25.3 doesn't have `if-let*'.
This commit is contained in:
parent
a2973a87e1
commit
17f4770a18
5
init.el
5
init.el
@ -30,6 +30,11 @@
|
|||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
(setq use-package-verbose t))
|
(setq use-package-verbose t))
|
||||||
|
|
||||||
|
(use-package subr-x
|
||||||
|
:config
|
||||||
|
(put 'if-let 'byte-obsolete-info nil)
|
||||||
|
(put 'when-let 'byte-obsolete-info nil))
|
||||||
|
|
||||||
(use-package auto-compile
|
(use-package auto-compile
|
||||||
:demand t
|
:demand t
|
||||||
:config
|
:config
|
||||||
|
Loading…
x
Reference in New Issue
Block a user