From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: (error (format ... Date: Thu, 16 Jun 2005 15:32:55 +0200 Message-ID: Reply-To: Juanma Barranquero NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1118928824 13184 80.91.229.2 (16 Jun 2005 13:33:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 16 Jun 2005 13:33:44 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 16 15:33:43 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DiuUN-0006fx-8v for ged-emacs-devel@m.gmane.org; Thu, 16 Jun 2005 15:32:59 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DiuZn-00074j-5H for ged-emacs-devel@m.gmane.org; Thu, 16 Jun 2005 09:38:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DiuUq-0005v1-56 for emacs-devel@gnu.org; Thu, 16 Jun 2005 09:33:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DiuUh-0005ps-Pw for emacs-devel@gnu.org; Thu, 16 Jun 2005 09:33:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DiuUf-0005cT-DN for emacs-devel@gnu.org; Thu, 16 Jun 2005 09:33:17 -0400 Original-Received: from [64.233.182.194] (helo=nproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DiuW4-0008HR-Ps for emacs-devel@gnu.org; Thu, 16 Jun 2005 09:34:45 -0400 Original-Received: by nproxy.gmail.com with SMTP id i2so20812nfe for ; Thu, 16 Jun 2005 06:32:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=eC2nx9UV94NMqkmlUElH66JUy6vfYeDBPIhtQzO9dxgcP7bnCrXSQD5YiNVE3RebkH60lhqZ91oezYmA0Lj7QTYn+Fh2GWz8e1IhTW/BwcstHVUw8mdg+Nob5hozshCb7wuOOzPBjUYvqAH7phHphV2aHAch5s4ZJP9m1YHC1RU= Original-Received: by 10.48.43.18 with SMTP id q18mr16536nfq; Thu, 16 Jun 2005 06:32:55 -0700 (PDT) Original-Received: by 10.48.250.5 with HTTP; Thu, 16 Jun 2005 06:32:55 -0700 (PDT) Original-To: emacs-devel@gnu.org Content-Disposition: inline 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:38955 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:38955 Is there any reason for uses like this one from simple.el: (error (format "No further undo information%s" (if (and transient-mark-mode mark-active) " for region" ""))) instead of simply: (error "No further undo information%s" (if (and transient-mark-mode mark-active) " for region" "")) --=20 /L/e/k/t/u