From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Uwe Brauer Newsgroups: gmane.emacs.devel Subject: PATCH: iso-cvt.elL: add \textquestiondown =?utf-8?Q?=C2=BF?= Date: Sat, 11 Feb 2017 10:03:16 +0000 Message-ID: <87a89t2gez.fsf@mat.ucm.es> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: blaine.gmane.org 1486807459 16726 195.159.176.226 (11 Feb 2017 10:04:19 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 11 Feb 2017 10:04:19 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 11 11:04:12 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ccUXL-0003mG-JD for ged-emacs-devel@m.gmane.org; Sat, 11 Feb 2017 11:04:11 +0100 Original-Received: from localhost ([::1]:47709 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ccUXP-0002Dx-IB for ged-emacs-devel@m.gmane.org; Sat, 11 Feb 2017 05:04:15 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35664) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ccUWh-0002Dp-C9 for emacs-devel@gnu.org; Sat, 11 Feb 2017 05:03:32 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ccUWc-0002GE-Ly for emacs-devel@gnu.org; Sat, 11 Feb 2017 05:03:31 -0500 Original-Received: from [195.159.176.226] (port=34307 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ccUWc-0002Fr-Ds for emacs-devel@gnu.org; Sat, 11 Feb 2017 05:03:26 -0500 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1ccUWS-0000hy-TN for emacs-devel@gnu.org; Sat, 11 Feb 2017 11:03:16 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 65 Original-X-Complaints-To: usenet@blaine.gmane.org Mail-Copies-To: never Cancel-Lock: sha1:yjVeMa/u72fxE1d5eUjVu/XdxT4= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 195.159.176.226 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:212224 Archived-At: --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Hi Attached find a trivial patch which adds \textquestiondown to be translated to ¿. Uwe Brauer --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-Add-textquestiondown-to-be-translated-to.patch Content-Transfer-Encoding: 8bit >From 02f3c2aa191334099a2396ee0ce3f7e0b934c62a Mon Sep 17 00:00:00 2001 From: Uwe Brauer Date: Sat, 11 Feb 2017 10:01:15 +0000 Subject: [PATCH] =?UTF-8?q?Add=20\textquestiondown=20to=20be=20translated?= =?UTF-8?q?=20to=20=C2=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lisp/international/iso-cvt.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/international/iso-cvt.el b/lisp/international/iso-cvt.el index ebf90a3..3ae2055 100644 --- a/lisp/international/iso-cvt.el +++ b/lisp/international/iso-cvt.el @@ -202,6 +202,7 @@ iso-iso2tex (interactive "*r") (iso-translate-conventions from to iso-iso2tex-trans-tab)) + (defvar iso-tex2iso-trans-tab '( ("{\\\\\"a}" "ä") @@ -378,6 +379,7 @@ iso-tex2iso-trans-tab ("\\\\P{}" "¶" ) ("\\\\S{}" "§" ) ("{\\?`}" "¿") + ("\\\\textquestiondown" "¿") ("{!`}" "¡") ("\\?`" "¿") ("!`" "¡") @@ -565,6 +567,7 @@ iso-gtex2iso-trans-tab ("\\\\P{}" "¶" ) ("\\\\S{}" "§" ) ("?`" "¿") + ("\\\\textquestiondown" "¿") ("!`" "¡") ("{?`}" "¿") ("{!`}" "¡") -- 1.9.1 --=-=-=--