]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/net/shr.el (shr-image-zoom-levels): Fix wrong type.
authorMattias EngdegÄrd <mattiase@acm.org>
Tue, 9 Jul 2024 16:30:48 +0000 (18:30 +0200)
committerEshel Yaron <me@eshelyaron.com>
Tue, 9 Jul 2024 17:51:26 +0000 (19:51 +0200)
(cherry picked from commit ac797f60160848fb625db4855befc68352d6cbd2)

lisp/net/shr.el

index 4ccd8a5a85ae35fad19e832a564df99b2e0b33f4..39271cc52960024efc78e9301c83e570c7a20b40 100644 (file)
@@ -233,10 +233,10 @@ can be one of the following symbols:
 * `fill-height': Display the image zoomed to fill the height of the
 current window."
   :version "31.1"
-  :type '(set (choice (const :tag "Fit to window size" fit)
-                      (const :tag "Original size" original)
-                      (const :tag "Full image size" image)
-                      (const :tag "Fill window height" fill-height))))
+  :type '(set (const :tag "Fit to window size" fit)
+              (const :tag "Original size" original)
+              (const :tag "Full image size" image)
+              (const :tag "Fill window height" fill-height)))
 
 (defvar shr-content-function nil
   "If bound, this should be a function that will return the content.