From 3233c063ea62f32ac3001d164c3997310c19c180 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Mon, 1 Aug 2005 18:40:16 +0000 Subject: [PATCH] (all): Prevent bug if user sets `indicate-buffer-boundaries' outside Custom. --- lisp/cus-start.el | 6 +++--- 1 file 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) -- 2.39.5