From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Dave Love Newsgroups: gmane.emacs.devel Subject: Re: bytecomp warning for CL functions Date: 18 Jul 2002 19:48:38 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: References: <200207021945.g62Jjxa02009@aztec.santafe.edu> <20020703091701.8A71.LEKTU@terra.es> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1027018167 27629 127.0.0.1 (18 Jul 2002 18:49:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 18 Jul 2002 18:49:27 +0000 (UTC) Cc: rms@gnu.org, monnier+gnu/emacs@rum.cs.yale.edu, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17VGL8-0007BW-00 for ; Thu, 18 Jul 2002 20:49:26 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17VGX9-0004xo-00 for ; Thu, 18 Jul 2002 21:01:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17VGL5-0002n0-00; Thu, 18 Jul 2002 14:49:23 -0400 Original-Received: from albion.dl.ac.uk ([148.79.80.39]) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17VGKO-0002lN-00; Thu, 18 Jul 2002 14:48:40 -0400 Original-Received: from fx by albion.dl.ac.uk with local (Exim 3.35 #1 (Debian)) id 17VGKM-0005vg-00; Thu, 18 Jul 2002 19:48:38 +0100 Original-To: Juanma Barranquero Original-Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:5871 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:5871 > causes a warning at startup time: > > warning: Function `delete-if-not' from cl package called at runtime Comments: 1. The warning is being issued correctly. 2. It's not a good idea to load cl in .emacs -- you can fail to spot problems, apart from the bloat. 3. You can turn off implicit compilation by defadvice. 4. defadvice should normally be avoided, apart from the bloat. If a modification you want to make with it is useful, it normally indicates the lack of a hook. I'd just copy the function and modify it to avoid sucking in advice in a case like that.