From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: add-change-log-entry Date: Sun, 22 Jul 2007 10:44:41 +0200 Message-ID: <46A318F9.6090006@gmx.at> References: <200707162209.30895.pogonyshev@gmx.net> <469DD72C.1080909@gmx.at> <469E1BAA.8090407@gnu.org> <469E248F.1050604@gmx.at> <469E8702.5000204@gmx.at> <46A07200.6010103@gmx.at> <46A1CD47.7070802@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1185093935 32305 80.91.229.12 (22 Jul 2007 08:45:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 22 Jul 2007 08:45:35 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 22 10:45:32 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ICX4C-00077o-T9 for ged-emacs-devel@m.gmane.org; Sun, 22 Jul 2007 10:45:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ICX4C-0002qY-C5 for ged-emacs-devel@m.gmane.org; Sun, 22 Jul 2007 04:45:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ICX49-0002qE-5N for emacs-devel@gnu.org; Sun, 22 Jul 2007 04:45:25 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ICX46-0002pb-S9 for emacs-devel@gnu.org; Sun, 22 Jul 2007 04:45:24 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ICX46-0002pT-MD for emacs-devel@gnu.org; Sun, 22 Jul 2007 04:45:22 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1ICX45-0004U4-Sn for emacs-devel@gnu.org; Sun, 22 Jul 2007 04:45:22 -0400 Original-Received: (qmail invoked by alias); 22 Jul 2007 08:45:20 -0000 Original-Received: from N919P014.adsl.highway.telekom.at (EHLO [62.47.58.206]) [62.47.58.206] by mail.gmx.net (mp003) with SMTP; 22 Jul 2007 10:45:20 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX19oe5A9f2too7GZHj2Mm5U8cBCFxwHTuTMcDGRBny dgMOQMNDY+DiEc User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en In-Reply-To: X-Y-GMX-Trusted: 0 X-detected-kernel: Linux 2.6 (newer, 1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:75282 Archived-At: > 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?