summaryrefslogtreecommitdiff
path: root/lisp/cus-start.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-08-01 18:40:16 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-08-01 18:40:16 +0000
commit3233c063ea62f32ac3001d164c3997310c19c180 (patch)
treea3083a8179c62a8df351ddc1edf8da5573638de9 /lisp/cus-start.el
parenteb94dac6dd54f19d0568f79a9806c4121aee779e (diff)
downloademacs-3233c063ea62f32ac3001d164c3997310c19c180.tar.gz
(all): Prevent bug if user sets `indicate-buffer-boundaries' outside Custom.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r--lisp/cus-start.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 5b83f9fbb0f..0a72c500d20 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -72,8 +72,7 @@ since it could result in memory overflow and make Emacs crash."
(const :tag "No indicators" nil)
(const :tag "On left, with arrows" left)
(const :tag "On right, with arrows" right)
- (const :tag "On left, no arrows" t)
- (set :tag "Other"
+ (set :tag "Pick your own design"
(choice :tag "Default"
:value (t . left)
(const :tag "Do not show" (t . nil))
@@ -98,7 +97,8 @@ since it could result in memory overflow and make Emacs crash."
:value (down . left)
(const :tag "Do not show" (down . nil))
(const :tag "On the left" (down . left))
- (const :tag "On the right" (down . right)))))
+ (const :tag "On the right" (down . right))))
+ (other :tag "On left, no arrows" t))
"22.1")
(scroll-up-aggressively windows
(choice (const :tag "off" nil) number)