1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Generate :defines and :functions correctly

So they actually inhibit byte-compilation warnings as they were meant to.
This commit is contained in:
John Wiegley 2017-12-01 01:04:52 -08:00
parent b5b432d0fe
commit 88f8c1bb8f

View file

@ -1252,8 +1252,7 @@ representing symbols (that may need to be autloaded)."
(defalias 'use-package-normalize/:defines 'use-package-normalize-symlist)
(defun use-package-handler/:defines (name keyword arg rest state)
(let ((body (use-package-process-keywords name rest state)))
body))
(use-package-process-keywords name rest state))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@ -1263,16 +1262,7 @@ representing symbols (that may need to be autloaded)."
(defalias 'use-package-normalize/:functions 'use-package-normalize-symlist)
(defun use-package-handler/:functions (name keyword arg rest state)
(let ((body (use-package-process-keywords name rest state)))
(if (not (bound-and-true-p byte-compile-current-file))
body
(use-package-concat
(unless (null arg)
`((eval-when-compile
,@(mapcar
#'(lambda (fn)
`(declare-function ,fn ,(use-package-as-string name))) arg))))
body))))
(use-package-process-keywords name rest state))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
@ -1750,14 +1740,15 @@ this file. Usage:
;; scope.
(if (bound-and-true-p byte-compile-current-file)
(setq args
(use-package-plist-cons
(use-package-plist-append
args :preface
`(eval-when-compile
,@(mapcar #'(lambda (var) `(defvar ,var))
(use-package-concat
(mapcar #'(lambda (var) `(defvar ,var))
(plist-get args :defines))
,@(mapcar #'(lambda (fn) `(declare-function
(mapcar #'(lambda (fn) `(declare-function
,fn ,(use-package-as-string name)))
(plist-get args :functions))
`((eval-when-compile
(with-demoted-errors
,(format "Cannot load %s: %%S" name)
,(if (eq use-package-verbose 'debug)
@ -1765,7 +1756,7 @@ this file. Usage:
,(unless (plist-get args :no-require)
`(load ,(if (stringp name)
name
(symbol-name name)) nil t)))))))
(symbol-name name)) nil t)))))))))
(let ((body
(macroexp-progn