emacs-devel
[Top][All Lists]
Advanced

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

Re: add-change-log-entry


From: martin rudalics
Subject: Re: add-change-log-entry
Date: Sun, 22 Jul 2007 10:44:41 +0200
User-agent: Mozilla Thunderbird 1.0 (Windows/20041206)

>     BTW, may I defvar c-beginning-of-defun and c-end-of-defun here, they
>     are driving me mad.
>
> You can add defvars for them without values or doc strings
> whenever needed to prevent warnings about code that is correct.

My question was non-sensical.  I should have asked instead: What is the
canonical way to avoid byte-compiler messages for the undefined

(c-beginning-of-defun)

in add-log.el?  Do I have to use

(if (fboundp 'c-beginning-of-defun)
    (c-beginning-of-defun))

or would it suffice to write

(funcall 'c-beginning-of-defun)

instead?





reply via email to

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