diff options
author | John Wiegley <johnw@newartisans.com> | 2016-02-25 15:16:04 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2016-02-25 15:16:04 -0800 |
commit | 947345028e7ba1a50b902ed8f94bb31eba898cd8 (patch) | |
tree | f6b10759d0dc7a0fc96f439561bc6a7803ea3299 /lisp/use-package | |
parent | c65a33427650a20b77138ee3cdfaeeb174dda35d (diff) | |
download | emacs-947345028e7ba1a50b902ed8f94bb31eba898cd8.tar.gz emacs-947345028e7ba1a50b902ed8f94bb31eba898cd8.tar.bz2 emacs-947345028e7ba1a50b902ed8f94bb31eba898cd8.zip |
Add another `declare'
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 67486194169..baa50b0270f 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -357,6 +357,7 @@ Unless the KEYWORD being processed intends to ignore remaining keywords, it must call this function recursively, passing in the plist with its keyword and argument removed, and passing in the next value for the STATE." + (declare (indent 1)) (unless (null plist) (let* ((keyword (car plist)) (arg (cadr plist)) |