From: Luc Teirlinck Date: Mon, 1 Aug 2005 18:40:16 +0000 (+0000) Subject: (all): Prevent bug if user sets `indicate-buffer-boundaries' outside Custom. X-Git-Tag: emacs-pretest-22.0.90~7815 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3233c063ea62f32ac3001d164c3997310c19c180;p=emacs.git (all): Prevent bug if user sets `indicate-buffer-boundaries' outside Custom. --- 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)