From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Stegemann Subject: [PATCH] Incorrect HTML entity for `degree' Date: Mon, 06 Jun 2011 09:10:11 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44725) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTTxE-0005IO-MG for emacs-orgmode@gnu.org; Mon, 06 Jun 2011 03:10:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QTTxD-0004T9-3W for emacs-orgmode@gnu.org; Mon, 06 Jun 2011 03:10:28 -0400 Received: from lo.gmane.org ([80.91.229.12]:54704) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTTxC-0004T0-IS for emacs-orgmode@gnu.org; Mon, 06 Jun 2011 03:10:26 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QTTx8-0006Xw-If for emacs-orgmode@gnu.org; Mon, 06 Jun 2011 09:10:22 +0200 Received: from london.zeitform.net ([146.140.213.100]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Jun 2011 09:10:22 +0200 Received: from ulf-news by london.zeitform.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Jun 2011 09:10:22 +0200 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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain The degree symbol (`deg') has an incorrect HTML entity in org-entities.el. Ulf --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=org-entities.el.degree.diff Content-Transfer-Encoding: 8bit diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 609173a..c6ace61 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -304,7 +304,7 @@ loaded, add these packages to `org-export-latex-packages-alist'." ("prod" "\\prod" t "∏" "[product]" "[n-ary product]" "∏") ("micro" "\\textmu{}" nil "µ" "micro" "µ" "µ") ("macr" "\\textasciimacron{}" nil "¯" "[macron]" "¯" "¯") - ("deg" "\\textdegree{}" nil "deg" "degree" "°" "°") + ("deg" "\\textdegree{}" nil "°" "degree" "°" "°") ("prime" "\\prime" t "′" "'" "'" "′") ("Prime" "\\prime{}\\prime" t "″" "''" "''" "″") ("infin" "\\propto" t "∞" "[infinity]" "[infinity]" "∞") --=-=-=--