Browse Source

* org-html.el (org-export-html-protect-char-alist): Fix typo in custom type definition.

Bastien Guerry 14 years ago
parent
commit
2ff34a5fac
1 changed files with 2 additions and 3 deletions
  1. 2 3
      lisp/org-html.el

+ 2 - 3
lisp/org-html.el

@@ -531,14 +531,13 @@ a file."
   :group 'org-export-html
   :type 'string)
 
-
 (defcustom org-export-html-protect-char-alist
   '(("&" . "&")
     ("<" . "&lt;")
     (">" . "&gt;"))
   "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."