aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2017-01-24 21:31:17 +0100
committerLars Ingebrigtsen2017-01-24 21:31:17 +0100
commit253fdf799bfff4e5a91dcdfd8c9f422ff015decf (patch)
tree39090d30d3a11b099e847fbb3cce874d6df93b1b
parent37567393a033f3feeec3d6ace30fa2dcd0419e26 (diff)
downloademacs-253fdf799bfff4e5a91dcdfd8c9f422ff015decf.tar.gz
emacs-253fdf799bfff4e5a91dcdfd8c9f422ff015decf.zip
shr-width doc clarification
* lisp/net/shr.el (shr-width): Clarify the interaction with `shr-use-fonts' (bug#24928).
-rw-r--r--lisp/net/shr.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/net/shr.el b/lisp/net/shr.el
index 1c2ea3c7bc5..cafb89e5b4d 100644
--- a/lisp/net/shr.el
+++ b/lisp/net/shr.el
@@ -96,8 +96,9 @@ If nil, don't draw horizontal table lines."
96(defcustom shr-width nil 96(defcustom shr-width nil
97 "Frame width to use for rendering. 97 "Frame width to use for rendering.
98May either be an integer specifying a fixed width in characters, 98May either be an integer specifying a fixed width in characters,
99or nil, meaning that the full width of the window should be 99or nil, meaning that the full width of the window should be used.
100used." 100If `shr-use-fonts' is set, the mean width of a character is used
101to compute the pixel width to be used."
101 :version "25.1" 102 :version "25.1"
102 :type '(choice (integer :tag "Fixed width in characters") 103 :type '(choice (integer :tag "Fixed width in characters")
103 (const :tag "Use the width of the window" nil)) 104 (const :tag "Use the width of the window" nil))