aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-08-01 18:40:16 +0000
committerLuc Teirlinck2005-08-01 18:40:16 +0000
commit3233c063ea62f32ac3001d164c3997310c19c180 (patch)
treea3083a8179c62a8df351ddc1edf8da5573638de9
parenteb94dac6dd54f19d0568f79a9806c4121aee779e (diff)
downloademacs-3233c063ea62f32ac3001d164c3997310c19c180.tar.gz
emacs-3233c063ea62f32ac3001d164c3997310c19c180.zip
(all): Prevent bug if user sets `indicate-buffer-boundaries' outside Custom.
-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."
72 (const :tag "No indicators" nil) 72 (const :tag "No indicators" nil)
73 (const :tag "On left, with arrows" left) 73 (const :tag "On left, with arrows" left)
74 (const :tag "On right, with arrows" right) 74 (const :tag "On right, with arrows" right)
75 (const :tag "On left, no arrows" t) 75 (set :tag "Pick your own design"
76 (set :tag "Other"
77 (choice :tag "Default" 76 (choice :tag "Default"
78 :value (t . left) 77 :value (t . left)
79 (const :tag "Do not show" (t . nil)) 78 (const :tag "Do not show" (t . nil))
@@ -98,7 +97,8 @@ since it could result in memory overflow and make Emacs crash."
98 :value (down . left) 97 :value (down . left)
99 (const :tag "Do not show" (down . nil)) 98 (const :tag "Do not show" (down . nil))
100 (const :tag "On the left" (down . left)) 99 (const :tag "On the left" (down . left))
101 (const :tag "On the right" (down . right))))) 100 (const :tag "On the right" (down . right))))
101 (other :tag "On left, no arrows" t))
102 "22.1") 102 "22.1")
103 (scroll-up-aggressively windows 103 (scroll-up-aggressively windows
104 (choice (const :tag "off" nil) number) 104 (choice (const :tag "off" nil) number)