emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cc-vars.el


From: Richard Stallman
Subject: Re: cc-vars.el
Date: Wed, 20 Nov 2002 16:14:03 -0500

    !           (fbound (byte-compile-form (nth 2 form) for-effect)
    !                   (setq byte-compile-unresolved-functions
    !                         (delq (assq fbound
    !                                     byte-compile-unresolved-functions)
    !                               byte-compile-unresolved-functions)))

If the function was in the list before, it should not
be removed now.  Something like

  (let ((old byte-compile-unresolved-functions))
    (byte-compile-form (nth 2 form) for-effect)
    (unless (assq fbound old)
      (delq (assq fbound
                  byte-compile-unresolved-functions))))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]