From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: How do you load remove-if? Date: Mon, 3 May 2010 02:34:51 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1272846924 8546 80.91.229.12 (3 May 2010 00:35:24 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 3 May 2010 00:35:24 +0000 (UTC) To: Emacs-Devel devel , Kevin Ryde Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 03 02:35:23 2010 connect(): No such file or directory 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.69) (envelope-from ) id 1O8jd3-0004L8-F5 for ged-emacs-devel@m.gmane.org; Mon, 03 May 2010 02:35:21 +0200 Original-Received: from localhost ([127.0.0.1]:48647 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8jd2-0005pk-RI for ged-emacs-devel@m.gmane.org; Sun, 02 May 2010 20:35:20 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O8jcy-0005op-4p for emacs-devel@gnu.org; Sun, 02 May 2010 20:35:16 -0400 Original-Received: from [140.186.70.92] (port=51345 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8jcv-0005oh-K5 for emacs-devel@gnu.org; Sun, 02 May 2010 20:35:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O8jcu-0003yA-9W for emacs-devel@gnu.org; Sun, 02 May 2010 20:35:13 -0400 Original-Received: from mail-fx0-f41.google.com ([209.85.161.41]:33192) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O8jcu-0003y3-4k for emacs-devel@gnu.org; Sun, 02 May 2010 20:35:12 -0400 Original-Received: by fxm1 with SMTP id 1so1730643fxm.0 for ; Sun, 02 May 2010 17:35:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:from:date :message-id:subject:to:content-type; bh=7NovMG9hUUJzuj1zsLnYoX9vPZvrS4B0GBlw4dIiQu8=; b=sEdmPXY+c+j1izGqWM4DIdgaMIBcDSvL+6QdjVBXVMhRh2DM6N8vCn2IgmVzHvbMhw 0obmQ/KNW6aVCjE9t2nhhcclDlrp2r3q4/Y/uhIZ3IeaFE+cjw+puDm77o/I79D81fNp JKpl7Nc+MZ5sDg2fkigM7eJaKJrxofEsk6Sf4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=VvS5UklPiDPt7V/jxuFP8GtrSnMlhy7jKmWESqPuI2L8zgGBwLxMidRaTYSyHi1BkI lSq/dkUzjX9DKzfd9YQeaJHc89tmpKgTKTplm1nafIXWUeNrdxvKu97rmyk/xBud0rbx saQHgjYm29vu2yL4t+vsyxOnnAHHp2e+0a3rk= Original-Received: by 10.239.161.84 with SMTP id g20mr1306275hbd.200.1272846911075; Sun, 02 May 2010 17:35:11 -0700 (PDT) Original-Received: by 10.239.164.81 with HTTP; Sun, 2 May 2010 17:34:51 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) 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:124450 Archived-At: I just took a look at checkdoc-batch.el. It looks very useful (and I think it maybe should be included in Emacs), but it uses (require 'cl) So I mailed Kevin and said that it should be (eval-when-compile (require 'cl)). He answered that this will not work since it uses delete-if which is a function. Then I noticed that remove-if is autoloaded so it looks to me like you do not have to require any library, or? But looking at the file cl-seq.el I saw another thing. It does (require 'cl) without eval-when-compile. Should it be like that? If remove-if is used then cl will be loaded because of this, or?