aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2024-07-09 18:30:48 +0200
committerMattias EngdegÄrd2024-07-09 18:31:46 +0200
commitac797f60160848fb625db4855befc68352d6cbd2 (patch)
tree23c95b9302bd27585fa9b9b086340b43f8b19b7b
parent7e358aa706f9dbfce24304e8a05904538615537f (diff)
downloademacs-ac797f60160848fb625db4855befc68352d6cbd2.tar.gz
emacs-ac797f60160848fb625db4855befc68352d6cbd2.zip
; * lisp/net/shr.el (shr-image-zoom-levels): Fix wrong type.
-rw-r--r--lisp/net/shr.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/shr.el b/lisp/net/shr.el
index 4ccd8a5a85a..39271cc5296 100644
--- a/lisp/net/shr.el
+++ b/lisp/net/shr.el
@@ -233,10 +233,10 @@ can be one of the following symbols:
233* `fill-height': Display the image zoomed to fill the height of the 233* `fill-height': Display the image zoomed to fill the height of the
234current window." 234current window."
235 :version "31.1" 235 :version "31.1"
236 :type '(set (choice (const :tag "Fit to window size" fit) 236 :type '(set (const :tag "Fit to window size" fit)
237 (const :tag "Original size" original) 237 (const :tag "Original size" original)
238 (const :tag "Full image size" image) 238 (const :tag "Full image size" image)
239 (const :tag "Fill window height" fill-height)))) 239 (const :tag "Fill window height" fill-height)))
240 240
241(defvar shr-content-function nil 241(defvar shr-content-function nil
242 "If bound, this should be a function that will return the content. 242 "If bound, this should be a function that will return the content.