From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mark E. Shoulson" Subject: Entities Date: Tue, 08 May 2012 22:52:42 -0400 Message-ID: <4FA9DBFA.8080405@kli.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------060109040206040909080907" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:39455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRx1M-000700-WF for emacs-orgmode@gnu.org; Tue, 08 May 2012 22:52:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SRx1I-0002dG-TS for emacs-orgmode@gnu.org; Tue, 08 May 2012 22:52:56 -0400 Received: from pi.meson.org ([96.56.207.26]:52702) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SRx1I-0002c6-O4 for emacs-orgmode@gnu.org; Tue, 08 May 2012 22:52:52 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list This is a multi-part message in MIME format. --------------060109040206040909080907 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit

There's a small bug in rendering the entities when org-pretty-entities is on (I get the feeling that org-pretty-entities is not a very commonly-used feature).  The entities \sup1 \sup2 \sup3 and \there4 are not rendered properly.  The regex detecting entities apparently doesn't catch numbers at the end, except for the special case of fractions.  I've added the others to the special-casing and attach a patch for it; I hope I managed to include the changelog properly (is git format-patch --attach the way to go?).


Also attached is another patch that might or might not be useful.  Sometimes it can be a problem when you can't type, say, asterisks around a word when you NEED asterisks around the word, not a boldface word (I'd been getting around it by using Unicode characters that look like asterisks, like ∗).  The way to do it right is to use the \ast entity, which expands to the right thing but doesn't affect formatting.  There's also already a \tilde entity, to allow putting in tildes without accidentally setting something verbatim.  I added entities for the remaining markup characters: \plus, \under, \equal, and \slash.  \under might be particularly handy when avoiding subscripting (which raises the question of if there should be an \asciicirc (or something) entity for ^ also).


~mark

--------------060109040206040909080907 Content-Type: text/x-patch; name="0001-Fix-for-displaying-certain-pretty-entities.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-Fix-for-displaying-certain-pretty-entities.patch" >From 5070e37aaae6f952bab022c71212fabb7549105e Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Tue, 8 May 2012 15:15:10 -0400 Subject: [PATCH] Fix for displaying certain "pretty" entities MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.7.7.6" This is a multi-part message in MIME format. --------------1.7.7.6 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit * org.el (org-fontify-entities): fix bug: The entities \sup[123] and \there4 were not "prettified" when org-pretty-entities was enabled. TINYCHANGE --- lisp/org.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --------------1.7.7.6 Content-Type: text/x-patch; name="0001-Fix-for-displaying-certain-pretty-entities.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-Fix-for-displaying-certain-pretty-entities.patch" diff --git a/lisp/org.el b/lisp/org.el index 66f9c3e..1d2955f 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5954,7 +5954,7 @@ needs to be inserted at a specific position in the font-lock sequence.") (when org-pretty-entities (catch 'match (while (re-search-forward - "\\\\\\(frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)" + "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)" limit t) (if (and (not (org-in-indented-comment-line)) (setq ee (org-entity-get (match-string 1))) --------------1.7.7.6-- --------------060109040206040909080907 Content-Type: text/x-patch; name="0002-Add-entities-for-_.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0002-Add-entities-for-_.patch" >From 58d18562f39ed64a547fa2d60510cae5983bcbef Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Tue, 8 May 2012 15:22:48 -0400 Subject: [PATCH] Add entities for /, +, _, = MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.7.7.6" This is a multi-part message in MIME format. --------------1.7.7.6 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit * org-entities.el (org-entities): add new entities for characters which could cause formatting changes if typed directly. --- lisp/org-entities.el | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) --------------1.7.7.6 Content-Type: text/x-patch; name="0001-Add-entities-for-_.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-Add-entities-for-_.patch" diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 8b5b3f3..fce3b68 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -260,6 +260,10 @@ loaded, add these packages to `org-export-latex-packages-alist'." ("lt" "\\textless{}" nil "<" "<" "<" "<") ("gt" "\\textgreater{}" nil ">" ">" ">" ">") ("tilde" "\\~{}" nil "˜" "~" "~" "~") + ("slash" "/" nil "/" "/" "/" "/") + ("plus" "+" nil "+" "+" "+" "+") + ("under" "\\_" nil "_" "_" "_" "_") + ("equal" "=" nil "=" "=" "=" "=") ("dagger" "\\textdagger{}" nil "†" "[dagger]" "[dagger]" "†") ("Dagger" "\\textdaggerdbl{}" nil "‡" "[doubledagger]" "[doubledagger]" "‡") --------------1.7.7.6-- --------------060109040206040909080907-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Entities Date: Wed, 23 May 2012 23:53:39 +0200 Message-ID: <87hav68syk.fsf@gmail.com> References: <4FA9DBFA.8080405@kli.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:49623) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXJXs-0001qX-Qw for emacs-orgmode@gnu.org; Wed, 23 May 2012 17:56:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXJXq-0001Kj-OV for emacs-orgmode@gnu.org; Wed, 23 May 2012 17:56:40 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:39733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXJXq-0001KQ-GG for emacs-orgmode@gnu.org; Wed, 23 May 2012 17:56:38 -0400 Received: by wefh52 with SMTP id h52so6501217wef.0 for ; Wed, 23 May 2012 14:56:36 -0700 (PDT) In-Reply-To: <4FA9DBFA.8080405@kli.org> (Mark E. Shoulson's message of "Tue, 08 May 2012 22:52:42 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Mark E. Shoulson" Cc: org-mode mailing list Hello, "Mark E. Shoulson" writes: > There's a small bug in rendering the entities when org-pretty-entities > is on (I get the feeling that org-pretty-entities is not a very > commonly-used feature). The entities \sup1 \sup2 \sup3 and \there4 are > not rendered properly. The regex detecting entities apparently doesn't > catch numbers at the end, except for the special case of fractions. I've > added the others to the special-casing and attach a patch for it; I > hope I managed to include the changelog properly (is git format-patch - > -attach the way to go?). This looks good. You should add a title to your patch, like "Fix detection of entities ending with a number" or "org-entities: Add some entities". Also, please capitalize the word after the colons. > Also attached is another patch that might or might not be useful. > Sometimes it can be a problem when you can't type, say, asterisks > around a word when you NEED asterisks around the word, not a boldface > word (I'd been getting around it by using Unicode characters that look > like asterisks, like =E2=88=97). The way to do it right is to use the \ast > entity, which expands to the right thing but doesn't affect > formatting. There's also already a \tilde entity, to allow putting in > tildes without accidentally setting something verbatim. I added > entities for the remaining markup characters: \plus, \under, \equal, > and \slash. \under might be particularly handy when avoiding > subscripting (which raises the question of if there should be an > \asciicirc (or something) entity for ^ also). I think they are all useful. Though, asciicirc already exists as circ. Could you modify slightly your changelogs before I apply the patches? Thank you. Regards, --=20 Nicolas Goaziou From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mark E. Shoulson" Subject: [PATCH] Fix for displaying entities ending in a number Date: Wed, 23 May 2012 21:22:52 -0400 Message-ID: <4FBD8D6C.5040801@kli.org> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050809000709050908050101" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXMlb-00037P-OA for emacs-orgmode@gnu.org; Wed, 23 May 2012 21:23:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXMlZ-0003C9-Ss for emacs-orgmode@gnu.org; Wed, 23 May 2012 21:23:03 -0400 Received: from pi.meson.org ([96.56.207.26]:44899) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SXMlZ-0003Bu-Nj for emacs-orgmode@gnu.org; Wed, 23 May 2012 21:23:01 -0400 In-Reply-To: <87hav68syk.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nicolas Goaziou Cc: org-mode mailing list This is a multi-part message in MIME format. --------------050809000709050908050101 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 05/23/2012 05:53 PM, Nicolas Goaziou wrote: > Hello, > > "Mark E. Shoulson" writes: > >> There's a small bug in rendering the entities when org-pretty-entities >> is on (I get the feeling that org-pretty-entities is not a very >> commonly-used feature). The entities \sup1 \sup2 \sup3 and \there4 are >> not rendered properly. The regex detecting entities apparently doesn't >> catch numbers at the end, except for the special case of fractions. I've >> added the others to the special-casing and attach a patch for it; I >> hope I managed to include the changelog properly (is git format-patch - >> -attach the way to go?). > This looks good. You should add a title to your patch, like "Fix > detection of entities ending with a number" or "org-entities: Add some > entities". > > Also, please capitalize the word after the colons. I was trying to copy the format seen in other patches on the list; I guess I missed some details. I've set the subject of this thread as I've seen done with other patches, and I attach only a single patch, as requested by the website, and created the changelog with C-x 4 a and everything. I hope I got it right. Other patch follows under separate cover. > > Could you modify slightly your changelogs before I apply the patches? > > Thank you. > > > Regards, > --------------050809000709050908050101 Content-Type: text/x-patch; name="0001-Fix-for-displaying-entities-ending-in-a-number.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-Fix-for-displaying-entities-ending-in-a-number.patch" >From 9b8e1b56c5c60720f985ea2b26952702c6c730a6 Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Wed, 23 May 2012 20:17:40 -0400 Subject: [PATCH] Fix for displaying entities ending in a number * lisp/org.el (org-fontify-entities): Fix bug: The entities \sup[123] and \there4 were not "prettified" when org-pretty-entities was enabled. TINYCHANGE --- lisp/org.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 0b00851..c44c7ab 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5966,7 +5966,7 @@ needs to be inserted at a specific position in the font-lock sequence.") (when org-pretty-entities (catch 'match (while (re-search-forward - "\\\\\\(frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)" + "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)" limit t) (if (and (not (org-in-indented-comment-line)) (setq ee (org-entity-get (match-string 1))) -- 1.7.7.6 --------------050809000709050908050101-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mark E. Shoulson" Subject: [PATCH] Add entities for /, +, _, = Date: Wed, 23 May 2012 22:02:16 -0400 Message-ID: <4FBD96A8.9040106@kli.org> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020100080303080401050908" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXNNe-0004Tq-Ln for emacs-orgmode@gnu.org; Wed, 23 May 2012 22:02:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXNNc-0006La-Pm for emacs-orgmode@gnu.org; Wed, 23 May 2012 22:02:22 -0400 Received: from pi.meson.org ([96.56.207.26]:44933) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SXNNc-0006KK-LD for emacs-orgmode@gnu.org; Wed, 23 May 2012 22:02:20 -0400 In-Reply-To: <87hav68syk.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nicolas Goaziou Cc: org-mode mailing list This is a multi-part message in MIME format. --------------020100080303080401050908 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit On 05/23/2012 05:53 PM, Nicolas Goaziou wrote: > Hello, > > "Mark E. Shoulson" writes: >> Also attached is another patch that might or might not be useful. >> Sometimes it can be a problem when you can't type, say, asterisks >> around a word when you NEED asterisks around the word, not a boldface >> word (I'd been getting around it by using Unicode characters that look >> like asterisks, like ∗). The way to do it right is to use the \ast >> entity, which expands to the right thing but doesn't affect >> formatting. There's also already a \tilde entity, to allow putting in >> tildes without accidentally setting something verbatim. I added >> entities for the remaining markup characters: \plus, \under, \equal, >> and \slash. \under might be particularly handy when avoiding >> subscripting (which raises the question of if there should be an >> \asciicirc (or something) entity for ^ also). > I think they are all useful. Though, asciicirc already exists as circ. I hadn't counted \circ because it expands under Unicode to ˆ (U+02C6) and not to the true ascii circumflex ^ (U+005E); the point of these entities is to represent ascii characters that otherwise would confuse things. Maybe \circ should expand to ^; maybe there should be another entity for it (maybe neither). Anyway; attaching the relevant patch (changelog tweaked), once again hoping I got the formatting and everything right. ~mark --------------020100080303080401050908 Content-Type: text/x-patch; name="0001-Add-entities-for-_.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-Add-entities-for-_.patch" >From 4d6c4ccc90fd181f446ff4c7d56f5c980ec9d940 Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Wed, 23 May 2012 21:53:35 -0400 Subject: [PATCH] Add entities for /, +, _, = * org-entities.el (org-entities): Add new entities for characters which could cause formatting changes if typed directly. --- lisp/org-entities.el | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 8b5b3f3..fce3b68 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -260,6 +260,10 @@ loaded, add these packages to `org-export-latex-packages-alist'." ("lt" "\\textless{}" nil "<" "<" "<" "<") ("gt" "\\textgreater{}" nil ">" ">" ">" ">") ("tilde" "\\~{}" nil "˜" "~" "~" "~") + ("slash" "/" nil "/" "/" "/" "/") + ("plus" "+" nil "+" "+" "+" "+") + ("under" "\\_" nil "_" "_" "_" "_") + ("equal" "=" nil "=" "=" "=" "=") ("dagger" "\\textdagger{}" nil "†" "[dagger]" "[dagger]" "†") ("Dagger" "\\textdaggerdbl{}" nil "‡" "[doubledagger]" "[doubledagger]" "‡") -- 1.7.7.6 --------------020100080303080401050908-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [PATCH] Fix for displaying entities ending in a number Date: Fri, 25 May 2012 17:00:26 +0200 Message-ID: <878vgg8fw5.fsf@gmail.com> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> <4FBD8D6C.5040801@kli.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:39510) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXw38-0002XM-KC for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:03:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXw36-0005ge-OI for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:03:30 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:65323) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXw36-0005fm-GR for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:03:28 -0400 Received: by wibhm14 with SMTP id hm14so5275495wib.12 for ; Fri, 25 May 2012 08:03:24 -0700 (PDT) In-Reply-To: <4FBD8D6C.5040801@kli.org> (Mark E. Shoulson's message of "Wed, 23 May 2012 21:22:52 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Mark E. Shoulson" Cc: org-mode mailing list Hello, "Mark E. Shoulson" writes: > I was trying to copy the format seen in other patches on the list; > I guess I missed some details. I've set the subject of this thread as > I've seen done with other patches, and I attach only a single patch, > as requested by the website, and created the changelog with C-x > 4 a and everything. I hope I got it right. That's perfect. I have applied your patch. Thank you. Regards, -- Nicolas Goaziou From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [PATCH] Add entities for /, +, _, = Date: Fri, 25 May 2012 17:04:01 +0200 Message-ID: <874nr48fq6.fsf@gmail.com> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> <4FBD96A8.9040106@kli.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:57934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXw6a-0003Jt-FU for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:07:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXw6V-0006yU-LQ for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:07:04 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:52187) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXw6V-0006xz-Cv for emacs-orgmode@gnu.org; Fri, 25 May 2012 11:06:59 -0400 Received: by wefh52 with SMTP id h52so836869wef.0 for ; Fri, 25 May 2012 08:06:57 -0700 (PDT) In-Reply-To: <4FBD96A8.9040106@kli.org> (Mark E. Shoulson's message of "Wed, 23 May 2012 22:02:16 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Mark E. Shoulson" Cc: org-mode mailing list Hello, "Mark E. Shoulson" writes: > I hadn't counted \circ because it expands under Unicode to =CB=86 (U+02C6) > and not to the true ascii circumflex ^ (U+005E); the point of these > entities is to represent ascii characters that otherwise would confuse > things. Maybe \circ should expand to ^; maybe there should be another > entity for it (maybe neither). You're right, there could be another entity for ^. asciicirc is good enough as a name. Would you want to make a patch for it? Also, you may want to consider signing FSF papers for more important contributions. > Anyway; attaching the relevant patch (changelog tweaked), once again > hoping I got the formatting and everything right. Applied. Thanks again. Regards, --=20 Nicolas Goaziou From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mark E. Shoulson" Subject: Re: [PATCH] Add entities for /, +, _, = Date: Fri, 25 May 2012 16:40:07 -0400 Message-ID: <4FBFEE27.1060702@kli.org> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> <4FBD96A8.9040106@kli.org> <874nr48fq6.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:56426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SY1J6-00015S-O6 for emacs-orgmode@gnu.org; Fri, 25 May 2012 16:40:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SY1J5-0003EB-59 for emacs-orgmode@gnu.org; Fri, 25 May 2012 16:40:20 -0400 Received: from pi.meson.org ([96.56.207.26]:47139) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SY1J4-0003CJ-Ml for emacs-orgmode@gnu.org; Fri, 25 May 2012 16:40:19 -0400 In-Reply-To: <874nr48fq6.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nicolas Goaziou Cc: org-mode mailing list On 05/25/2012 11:04 AM, Nicolas Goaziou wrote: > Hello, > You're right, there could be another entity for ^. asciicirc is good > enough as a name. Would you want to make a patch for it? > > Also, you may want to consider signing FSF papers for more important > contributions. > > Yes, I'll do both those things, so don't worry about the patch. Might have to wait until next week though. ~mark From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: [PATCH] Add entities for /, +, _, = Date: Fri, 25 May 2012 23:23:57 +0200 Message-ID: <87396nx2y9.fsf@altern.org> References: <4FA9DBFA.8080405@kli.org> <87hav68syk.fsf@gmail.com> <4FBD96A8.9040106@kli.org> <874nr48fq6.fsf@gmail.com> <4FBFEE27.1060702@kli.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SY3nZ-00085l-OK for emacs-orgmode@gnu.org; Fri, 25 May 2012 19:19:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SY3nX-0000qo-Oq for emacs-orgmode@gnu.org; Fri, 25 May 2012 19:19:57 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:64712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SY3nX-0000oT-Gq for emacs-orgmode@gnu.org; Fri, 25 May 2012 19:19:55 -0400 Received: by mail-wg0-f49.google.com with SMTP id ds1so1046054wgb.30 for ; Fri, 25 May 2012 16:19:54 -0700 (PDT) In-Reply-To: <4FBFEE27.1060702@kli.org> (Mark E. Shoulson's message of "Fri, 25 May 2012 16:40:07 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Mark E. Shoulson" Cc: org-mode mailing list , Nicolas Goaziou Hi Mark, "Mark E. Shoulson" writes: > On 05/25/2012 11:04 AM, Nicolas Goaziou wrote: >> Hello, >> You're right, there could be another entity for ^. asciicirc is good >> enough as a name. Would you want to make a patch for it? >> >> Also, you may want to consider signing FSF papers for more important >> contributions. > > Yes, I'll do both those things, so don't worry about the patch. Might have > to wait until next week though. Thanks for doing this. Note that the process of getting your papers from FSF might take some time. Best, -- Bastien