From: Richard M. Stallman Date: Thu, 19 May 2005 15:39:21 +0000 (+0000) Subject: (byte-compile-file-form-custom-declare-variable): X-Git-Tag: ttn-vms-21-2-B4~146 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe33e7c83c02477becbf965733d7d817c8ec331a;p=emacs.git (byte-compile-file-form-custom-declare-variable): Call byte-compile-nogroup-warn if appropriate. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 970a64d062b..ac6093a4660 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2170,6 +2170,8 @@ list that represents a doc string reference. (put 'custom-declare-variable 'byte-hunk-handler 'byte-compile-file-form-custom-declare-variable) (defun byte-compile-file-form-custom-declare-variable (form) + (when (memq 'callargs byte-compile-warnings) + (byte-compile-nogroup-warn form)) (when (memq 'free-vars byte-compile-warnings) (push (nth 1 (nth 1 form)) byte-compile-bound-variables)) (let ((tail (nthcdr 4 form)))