From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Lute Kamstra Newsgroups: gmane.emacs.bugs Subject: Re: double quote in latex mode Date: Fri, 18 Feb 2005 14:24:11 +0100 Message-ID: <877jl6m26c.fsf@xs4all.nl> References: <200502181110.19930.c.m.klaij@math.utwente.nl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1108733099 13264 80.91.229.2 (18 Feb 2005 13:24:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 18 Feb 2005 13:24:59 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Feb 18 14:24:58 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D286a-0001oM-6f for geb-bug-gnu-emacs@m.gmane.org; Fri, 18 Feb 2005 14:23:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D28Mu-0003zX-NJ for geb-bug-gnu-emacs@m.gmane.org; Fri, 18 Feb 2005 08:40:28 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D28Mr-0003xG-7X for bug-gnu-emacs@gnu.org; Fri, 18 Feb 2005 08:40:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D28Mo-0003wB-Ai for bug-gnu-emacs@gnu.org; Fri, 18 Feb 2005 08:40:22 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D28Mo-0003vU-2v for bug-gnu-emacs@gnu.org; Fri, 18 Feb 2005 08:40:22 -0500 Original-Received: from [194.109.24.26] (helo=smtp-vbr6.xs4all.nl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D287B-000869-CW for bug-gnu-emacs@gnu.org; Fri, 18 Feb 2005 08:24:13 -0500 Original-Received: from pijl (a80-127-67-124.adsl.xs4all.nl [80.127.67.124]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id j1IDOC4N094877; Fri, 18 Feb 2005 14:24:12 +0100 (CET) (envelope-from Lute.Kamstra@xs4all.nl) Original-Received: from lute by pijl with local (Exim 3.36 #1 (Debian)) id 1D2879-0004dr-00; Fri, 18 Feb 2005 14:24:11 +0100 Original-To: "C.M. Klaij" In-Reply-To: <200502181110.19930.c.m.klaij@math.utwente.nl> (C. M. Klaij's message of "Fri, 18 Feb 2005 11:10:19 +0100") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Original-Lines: 31 X-Virus-Scanned: by XS4ALL Virus Scanner X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org X-MailScanner-To: geb-bug-gnu-emacs@m.gmane.org Xref: main.gmane.org gmane.emacs.bugs:10756 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:10756 "C.M. Klaij" writes: [...] > The double quote key in latex mode is not working correctly: > > if I use it once I get two accents (``) > > if I use it twice, I first get the two accents (``) and these > are then replaced with the correct double quote (") This is actually a feature: ,----[ C-h k " ] | " runs the command TeX-insert-quote | which is an interactive compiled Lisp function in `tex'. | (TeX-insert-quote FORCE) | | Insert the appropriate quote marks for TeX. | Inserts the value of `TeX-open-quote' (normally ``) or `TeX-close-quote' | (normally '') depending on the context. If `TeX-quote-after-quote' | is non-nil, this insertion works only after ". | With prefix argument FORCE, always inserts " characters. `---- Within LaTeX mode, you usually want to insert quotes like `` and ''. So LaTeX mode binds these insertions to the " key. The quote " is still available by pressing the " key twice. You can change this behavior by setting TeX-quote-after-quote to t. Lute.