From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Burton Samograd Newsgroups: gmane.emacs.devel Subject: Re: CL functions called at runtime Date: Mon, 03 Dec 2012 13:05:00 -0700 Message-ID: References: <50BD048E.4000509@dancol.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1354575135 19962 80.91.229.3 (3 Dec 2012 22:52:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Dec 2012 22:52:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: Daniel Colascione Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 03 23:52:27 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Tfes5-0001ng-QL for ged-emacs-devel@m.gmane.org; Mon, 03 Dec 2012 23:52:17 +0100 Original-Received: from localhost ([::1]:59063 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tfert-0005dn-Cj for ged-emacs-devel@m.gmane.org; Mon, 03 Dec 2012 17:52:05 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:56171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TfcGG-0007kR-Gp for emacs-devel@gnu.org; Mon, 03 Dec 2012 15:05:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TfcGF-0003i1-1O for emacs-devel@gnu.org; Mon, 03 Dec 2012 15:05:04 -0500 Original-Received: from samograd.ca ([69.90.114.176]:43347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TfcGE-0003gB-Re for emacs-devel@gnu.org; Mon, 03 Dec 2012 15:05:02 -0500 Original-Received: from CDW764-BURTONS.QFTI.COM (localhost.localdomain [127.0.0.1]) by samograd.ca (Postfix) with ESMTP id BB6F4B090DC; Mon, 3 Dec 2012 13:04:58 -0700 (MST) In-Reply-To: <50BD048E.4000509@dancol.org> (Daniel Colascione's message of "Mon, 03 Dec 2012 11:59:10 -0800") User-Agent: Gnus/5.1299999999999999 (Gnus v5.13) Emacs/24.2.90 (cygwin) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 69.90.114.176 X-Mailman-Approved-At: Mon, 03 Dec 2012 17:52:02 -0500 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:155227 Archived-At: Daniel Colascione writes: > On 12/3/12 10:55 AM, Burton Samograd wrote: >> Hi, >> >> I seemed to have missed the dicussion about the warnings being generated >> by the byte compiler about CL functions being called at runtime. Now >> I'm seeing them in my code for useful functions like remove-if. > > (defadvice byte-compile-warn (around shut-up-about-cl activate compile) > (let* ((fmt (ad-get-arg 0))) > (unless (string-match "cl package" fmt) > ad-do-it))) Excellent, thank you. -- Burton Samograd