Skip to content

Commit 4db51ba

Browse files
authored
Merge pull request jwiegley#997 from sdwolfz/native-compiler-warning
2 parents e2d173b + b8ac02f commit 4db51ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

use-package-core.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -910,12 +910,12 @@ If RECURSED is non-nil, recurse into sublists."
910910
sym
911911
\\='sym
912912
(quote sym)
913-
#'sym
913+
#\\='sym
914914
(function sym)
915915
(lambda () ...)
916916
\\='(lambda () ...)
917917
(quote (lambda () ...))
918-
#'(lambda () ...)
918+
#\\='(lambda () ...)
919919
(function (lambda () ...))"
920920
(or (if binding
921921
(symbolp v)
@@ -930,7 +930,7 @@ If RECURSED is non-nil, recurse into sublists."
930930
(defun use-package-normalize-function (v)
931931
"Reduce functional constructions to one of two normal forms:
932932
sym
933-
#'(lambda () ...)"
933+
#\\='(lambda () ...)"
934934
(cond ((symbolp v) v)
935935
((and (listp v)
936936
(memq (car v) '(quote function))

0 commit comments

Comments
 (0)