From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Gutov Newsgroups: gmane.emacs.help Subject: Re: How to quote a list of functions? Date: Sun, 9 Aug 2015 02:48:07 +0300 Message-ID: <55C69537.7020904@yandex.ru> References: <871tfdjqjx.fsf@mbork.pl> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1439077706 29313 80.91.229.3 (8 Aug 2015 23:48:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 8 Aug 2015 23:48:26 +0000 (UTC) To: Marcin Borkowski , Help Gnu Emacs mailing list Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Aug 09 01:48:25 2015 Return-path: Envelope-to: geh-help-gnu-emacs@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 1ZODqi-0003yB-Jy for geh-help-gnu-emacs@m.gmane.org; Sun, 09 Aug 2015 01:48:24 +0200 Original-Received: from localhost ([::1]:54034 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZODqh-0007bk-Lg for geh-help-gnu-emacs@m.gmane.org; Sat, 08 Aug 2015 19:48:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZODqZ-0007b8-5Y for help-gnu-emacs@gnu.org; Sat, 08 Aug 2015 19:48:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZODqV-0003h2-QW for help-gnu-emacs@gnu.org; Sat, 08 Aug 2015 19:48:15 -0400 Original-Received: from mail-lb0-x236.google.com ([2a00:1450:4010:c04::236]:33194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZODqV-0003eC-Hq for help-gnu-emacs@gnu.org; Sat, 08 Aug 2015 19:48:11 -0400 Original-Received: by lbbyj8 with SMTP id yj8so78065051lbb.0 for ; Sat, 08 Aug 2015 16:48:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-type:content-transfer-encoding; bh=KoUyRg2ZAZQiOmgIfpUUjE4rOL6sDIgFxIW3YXVzO+0=; b=bm048Ppo8/Y5ksdQtt4cyU+uY75z8IHBzZHw9uAvdJmuRiXyH+2+ZO+3dtLAbqL/8B UrkDDq9zoQ8jSd4TNiPprCIV2zMtdL3n2yiUk0WlbqXHdK+u+Ncdsoq1QiwNBxIY+WZj JbFrofsy48wmQafTcsqBK/+Pe+DmGLXRlzPjWyfofSJfTI62b8HqWepEyv2cNc0Tf2Xa QQbsy2jIA5chPVreLzlc7xlrFO2NZailQST342IN9PjtgenVBCXaPUlQf4OAoAfqBwvW IXj17WzYmfcV/9KGnTPOWwjgbES0xnK2/q8u4WhyiTSieFAjbC9fPszUuRzUOxXLgg4N J2Bg== X-Received: by 10.152.181.34 with SMTP id dt2mr14348417lac.84.1439077689852; Sat, 08 Aug 2015 16:48:09 -0700 (PDT) Original-Received: from [192.168.1.190] ([178.252.127.222]) by smtp.googlemail.com with ESMTPSA id oq2sm3120566lbb.34.2015.08.08.16.48.09 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 08 Aug 2015 16:48:09 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:40.0) Gecko/20100101 Thunderbird/40.0 In-Reply-To: <871tfdjqjx.fsf@mbork.pl> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::236 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:106359 Archived-At: Hi, On 08/09/2015 02:42 AM, Marcin Borkowski wrote: > Does that mean that I should quote a /list/ of functions > with it, too? So: #'(some-function some-other-function), for example? > (A list of functions makes sense in customizing certain behaviors, like > hooks or filter lists in Org.) A sharp quote before a list doesn't do anything. Do it like this: (list #'some-function #'some-other-function)