Fix subr-x macro autoloads
This commit is contained in:
parent
7029d287e5
commit
7d081c3154
3 changed files with 3 additions and 8 deletions
|
@ -19,7 +19,7 @@
|
||||||
(autoload sym "s"))
|
(autoload sym "s"))
|
||||||
|
|
||||||
(dolist (sym '(when-let if-let string-trim string-join string-blank-p string-lessp))
|
(dolist (sym '(when-let if-let string-trim string-join string-blank-p string-lessp))
|
||||||
(autoload sym "subr-x"))
|
(autoload sym "subr-x" nil nil 'macro))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
;;; feature/evil/autoload/evil.el -*- lexical-binding: t; -*-
|
;;; feature/evil/autoload/evil.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(eval-when-compile (require 'subr-x))
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun +evil/visual-indent ()
|
(defun +evil/visual-indent ()
|
||||||
"vnoremap < <gv"
|
"vnoremap < <gv"
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
;;; ui/doom-modeline/config.el -*- lexical-binding: t; -*-
|
;;; ui/doom-modeline/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(eval-when-compile (require 'subr-x))
|
(def-package! eldoc-eval
|
||||||
|
:demand t
|
||||||
(line-number-mode -1)
|
|
||||||
|
|
||||||
(def-package! eldoc-eval :demand t
|
|
||||||
:config
|
:config
|
||||||
;; Show eldoc in the mode-line with `eval-expression'
|
;; Show eldoc in the mode-line with `eval-expression'
|
||||||
(defun +doom-modeline--show-eldoc (input)
|
(defun +doom-modeline--show-eldoc (input)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue