]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix `image-auto-resize-on-window-resize' custom :type
authorManuel Giraud <manuel@ledu-giraud.fr>
Wed, 30 Aug 2023 15:38:57 +0000 (17:38 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 1 Sep 2023 18:17:39 +0000 (20:17 +0200)
* lisp/image-mode.el (image-auto-resize-on-window-resize): Change
custom :type from integer to number to be able to set below 1
second.  (Bug#65626)

lisp/image-mode.el

index 336d89dd52db4f5e78f4e210ac164d6cd935eb2c..962e48bd9c6b4afc698b8d1126a9c6d2cdd0c018 100644 (file)
@@ -89,7 +89,7 @@ This will always keep the image fit to the window.
 When non-nil, the value should be a number of seconds to wait before
 resizing according to the value specified in `image-auto-resize'."
   :type '(choice (const :tag "No auto-resize on window size change" nil)
-                 (integer :tag "Wait for number of seconds before resize" 1))
+                 (number :tag "Wait for number of seconds before resize" 1))
   :version "27.1"
   :group 'image)