(define-minor-mode): Don't call eval-after-load while building Emacs.

This commit is contained in:
Richard M. Stallman 2002-10-23 17:25:31 +00:00
parent 4458f412b0
commit 2d4a299479

View file

@ -218,7 +218,8 @@ With zero or negative ARG turn mode off.
;; If the mode is global, call the function according to the default.
,(if globalp
`(if (and load-file-name ,mode)
`(if (and load-file-name ,mode
(not purify-flag))
(eval-after-load load-file-name '(,mode 1)))))))
;;;