]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-file-form-custom-declare-variable):
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 May 2005 15:39:21 +0000 (15:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 May 2005 15:39:21 +0000 (15:39 +0000)
Call byte-compile-nogroup-warn if appropriate.

lisp/emacs-lisp/bytecomp.el

index 970a64d062bb811a680ddbe90ecae837e3859e8d..ac6093a466006fb91c54d47fe023cb6395a3836e 100644 (file)
@@ -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)))