From 2ff34a5fac5039ff192964d1c0e5fd33097dbe77 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 15 Mar 2011 14:13:25 +0100 Subject: [PATCH] * org-html.el (org-export-html-protect-char-alist): Fix typo in custom type definition. --- lisp/org-html.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index d9f34ef82..4365ef330 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -531,14 +531,13 @@ a file." :group 'org-export-html :type 'string) - (defcustom org-export-html-protect-char-alist '(("&" . "&") ("<" . "<") (">" . ">")) "Alist of characters to be converted by `org-html-protect'." - :type '((repeat (cons (string :tag "Character") - (string :tag "HTML equivalent"))))) + :type '(repeat (cons (string :tag "Character") + (string :tag "HTML equivalent")))) (defgroup org-export-htmlize nil "Options for processing examples with htmlize.el." -- 2.11.4.GIT