shr: fix defcustom
authorJulien Danjou <julien@danjou.info>
Thu, 14 Oct 2010 15:12:16 +0000 (17:12 +0200)
committerJulien Danjou <julien@danjou.info>
Thu, 14 Oct 2010 15:12:16 +0000 (17:12 +0200)
Signed-off-by: Julien Danjou <julien@danjou.info>
lisp/ChangeLog
lisp/shr.el

index 2c7804b..17e67a7 100644 (file)
@@ -1,3 +1,7 @@
+2010-10-14  Julien Danjou  <julien@danjou.info>
+
+       * shr.el: Fix defcustom type (char -> character).
+
 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * nnimap.el (nnimap-open-connection): tls-program should be a list of
index cfabf1a..ee54e30 100644 (file)
@@ -56,17 +56,17 @@ fit these criteria."
 (defcustom shr-table-line ?-
   "Character used to draw table line."
   :group 'shr
-  :type 'char)
+  :type 'character)
 
 (defcustom shr-table-corner ?+
   "Character used to draw table corner."
   :group 'shr
-  :type 'char)
+  :type 'character)
 
 (defcustom shr-hr-line ?-
   "Character used to draw hr line."
   :group 'shr
-  :type 'char)
+  :type 'character)
 
 (defcustom shr-width fill-column
   "Frame width to use for rendering."