From: Eli Zaretskii Date: Sat, 11 Jun 2005 13:25:16 +0000 (+0000) Subject: (thumbs-per-line, thumbs-thumbsdir-max-size) X-Git-Tag: emacs-pretest-22.0.90~9047 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67ed6461a6d446c25bfcb362c8678ba8926c9934;p=emacs.git (thumbs-per-line, thumbs-thumbsdir-max-size) (thumbs-relief, thumbs-margin, thumbs-image-resizing-step): Fix :type--it is `integer', not `string'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f55c9f4b6cf..4b513b46ba6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2005-06-11 Frederik Fouvry + * 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'. diff --git a/lisp/thumbs.el b/lisp/thumbs.el index 0eb58206916..09fe77cf352 100644 --- a/lisp/thumbs.el +++ b/lisp/thumbs.el @@ -77,13 +77,13 @@ (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