aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Wiegley2022-08-07 08:58:26 -0700
committerGitHub2022-08-07 08:58:26 -0700
commit0dc78ef4c875e33b677e2ac13a2105bcbf45288e (patch)
treed3f67fdf25a4dec11d036ed942d0faa0564898c3
parent2967849846e7110693f6dfe7d3709e2f3cc127ac (diff)
parent8fe0ac2983d7f608c554c46fd4231ddbbc8b5526 (diff)
downloademacs-0dc78ef4c875e33b677e2ac13a2105bcbf45288e.tar.gz
emacs-0dc78ef4c875e33b677e2ac13a2105bcbf45288e.zip
Merge pull request from conao3/fix-declare-style
GitHub-reference: https://github.com/jwiegley/use-package/issues/760
-rw-r--r--lisp/use-package/use-package-core.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el
index 36d5ccb977b..2859e3382ca 100644
--- a/lisp/use-package/use-package-core.el
+++ b/lisp/use-package/use-package-core.el
@@ -1663,7 +1663,7 @@ this file. Usage:
1663:custom-face Call `custom-set-faces' with each face definition. 1663:custom-face Call `custom-set-faces' with each face definition.
1664:ensure Loads the package using package.el if necessary. 1664:ensure Loads the package using package.el if necessary.
1665:pin Pin the package to an archive." 1665:pin Pin the package to an archive."
1666 (declare (indent 1)) 1666 (declare (indent defun))
1667 (unless (memq :disabled args) 1667 (unless (memq :disabled args)
1668 (macroexp-progn 1668 (macroexp-progn
1669 (use-package-concat 1669 (use-package-concat
@@ -1682,8 +1682,6 @@ this file. Usage:
1682 (when use-package-compute-statistics 1682 (when use-package-compute-statistics
1683 `((use-package-statistics-gather :use-package ',name t))))))) 1683 `((use-package-statistics-gather :use-package ',name t)))))))
1684 1684
1685(put 'use-package 'lisp-indent-function 'defun)
1686
1687(provide 'use-package-core) 1685(provide 'use-package-core)
1688 1686
1689;; Local Variables: 1687;; Local Variables: