瀏覽代碼

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

Bastien Guerry 14 年之前
父節點
當前提交
2ff34a5fac
共有 1 個文件被更改,包括 2 次插入3 次删除
  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."