aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/fringe.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/fringe.el b/lisp/fringe.el
index 0346341d536..1265e8308a0 100644
--- a/lisp/fringe.el
+++ b/lisp/fringe.el
@@ -150,7 +150,7 @@ To set this variable in a Lisp program, use `set-fringe-mode' to make
150it take real effect. 150it take real effect.
151Setting the variable with a customization buffer also takes effect. 151Setting the variable with a customization buffer also takes effect.
152If you only want to modify the appearance of the fringe in one frame, 152If you only want to modify the appearance of the fringe in one frame,
153you can use the interactive function `set-fringe-style'" 153you can use the interactive function `set-fringe-style'."
154 :type '(choice (const :tag "Default width" nil) 154 :type '(choice (const :tag "Default width" nil)
155 (const :tag "No fringes" 0) 155 (const :tag "No fringes" 0)
156 (const :tag "Only right" (0 . nil)) 156 (const :tag "Only right" (0 . nil))
@@ -174,7 +174,10 @@ If ALL-FRAMES, the negation of the fringe values in
174Otherwise the negation of the fringe value in the currently selected 174Otherwise the negation of the fringe value in the currently selected
175frame parameter is used." 175frame parameter is used."
176 (let ((mode (intern (completing-read 176 (let ((mode (intern (completing-read
177 "Select fringe mode for all frames (type ? for list): " 177 (concat
178 "Select fringe mode for "
179 (if all-frames "all frames" "selected frame")
180 " (type ? for list): ")
178 '(("none") ("default") ("left-only") 181 '(("none") ("default") ("left-only")
179 ("right-only") ("half") ("minimal")) 182 ("right-only") ("half") ("minimal"))
180 nil t)))) 183 nil t))))