From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: Re: quotation marks [was Re: TUTORIAL.de updated] Date: Sat, 21 Jan 2012 12:58:30 -0700 Message-ID: References: <20120118.161204.348826368.wl@gnu.org> <20248.15413.907023.894588@a1i15.kph.uni-mainz.de> <4x1uqv4pbx.fsf_-_@fencepost.gnu.org> <056566D61BA5441E860782777E736F44@us.oracle.com> <4F18A26A.1020402@cs.ucla.edu> <4F19EBE7.4010902@cs.ucla.edu> <878vl1amcv.fsf@lifelogs.com> <4F1A143D.8090603@cs.ucla.edu> <87ty3p60wm.fsf@uwakimon.sk.tsukuba.ac.jp> <87pqec6i0i.fsf@uwakimon.sk.tsukuba.ac.jp> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1327176491 14975 80.91.229.12 (21 Jan 2012 20:08:11 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 21 Jan 2012 20:08:11 +0000 (UTC) Cc: Paul Eggert , Andreas Schwab , emacs-devel@gnu.org To: "Stephen J. Turnbull" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 21 21:08:07 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RohEM-0000r1-RN for ged-emacs-devel@m.gmane.org; Sat, 21 Jan 2012 21:08:06 +0100 Original-Received: from localhost ([::1]:55014 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RohEL-0008Co-Vw for ged-emacs-devel@m.gmane.org; Sat, 21 Jan 2012 15:08:05 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:36512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RohEJ-0008Cj-Qr for emacs-devel@gnu.org; Sat, 21 Jan 2012 15:08:04 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RohEG-0005yl-T1 for emacs-devel@gnu.org; Sat, 21 Jan 2012 15:08:03 -0500 Original-Received: from mx1.redhat.com ([209.132.183.28]:39620) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RohEG-0005ye-ML for emacs-devel@gnu.org; Sat, 21 Jan 2012 15:08:00 -0500 Original-Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q0LK7onc004448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 21 Jan 2012 15:07:51 -0500 Original-Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q0LJwZIS013081; Sat, 21 Jan 2012 14:58:35 -0500 Original-Received: from barimba (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id q0LJwU7q002687; Sat, 21 Jan 2012 14:58:31 -0500 X-Attribution: Tom In-Reply-To: <87pqec6i0i.fsf@uwakimon.sk.tsukuba.ac.jp> (Stephen J. Turnbull's message of "Sun, 22 Jan 2012 03:13:33 +0900") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 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:147821 Archived-At: >>>>> "Stephen" == Stephen J Turnbull writes: Stephen> GCC is using *both* %` to supply mirrored quotes *and* %<, %> to Stephen> supply individual quotes? Yes, you can use %< and %>, or use the 'q' flag to quote. Stephen> If so, -1 to GCC, too. It is convenient in practice. %<..%> is more frequently used to quote literal text, though I do see a few instances of %<%s%> in the tree, where %qs would have been simpler. Tom