(thumbs-per-line, thumbs-thumbsdir-max-size)
authorEli Zaretskii <eliz@gnu.org>
Sat, 11 Jun 2005 13:25:16 +0000 (13:25 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 11 Jun 2005 13:25:16 +0000 (13:25 +0000)
(thumbs-relief, thumbs-margin, thumbs-image-resizing-step): Fix
:type--it is `integer', not `string'.

lisp/ChangeLog
lisp/thumbs.el

index f55c9f4..4b513b4 100644 (file)
@@ -1,5 +1,9 @@
 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
 
+       * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
+       (thumbs-relief, thumbs-margin, thumbs-image-resizing-step): Fix
+       :type--it is `integer', not `string'.
+
        * faces.el (modeline-highlight): Rename from (the erroneous)
        `modeline-higilight'.
 
index 0eb5820..09fe77c 100644 (file)
 
 (defcustom thumbs-per-line 5
   "*Number of thumbnails per line to show in directory."
-  :type 'string
+  :type 'integer
   :group 'thumbs)
 
 (defcustom thumbs-thumbsdir-max-size 50000000
   "Max size for thumbnails directory.
 When it reaches that size (in bytes), a warning is sent."
-  :type 'string
+  :type 'integer
   :group 'thumbs)
 
 (defcustom thumbs-conversion-program
@@ -104,13 +104,13 @@ It must be 'convert'."
 
 (defcustom thumbs-relief 5
   "*Size of button-like border around thumbnails."
-  :type 'string
+  :type 'integer
   :group 'thumbs)
 
 (defcustom thumbs-margin 2
   "*Size of the margin around thumbnails.
 This is where you see the cursor."
-  :type 'string
+  :type 'integer
   :group 'thumbs)
 
 (defcustom thumbs-thumbsdir-auto-clean t
@@ -122,7 +122,7 @@ than `thumbs-thumbsdir-max-size'."
 
 (defcustom thumbs-image-resizing-step 10
   "Step by which to resize image."
-  :type 'string
+  :type 'integer
   :group 'thumbs)
 
 (defcustom thumbs-temp-dir temporary-file-directory