aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-08-01 17:20:04 +0000
committerLuc Teirlinck2005-08-01 17:20:04 +0000
commiteb94dac6dd54f19d0568f79a9806c4121aee779e (patch)
treef361761a5539dc54f51fb563a81a7685846e558c
parent121e80cf1a98065bbd5c783bf753b8ed87f82e5d (diff)
downloademacs-eb94dac6dd54f19d0568f79a9806c4121aee779e.tar.gz
emacs-eb94dac6dd54f19d0568f79a9806c4121aee779e.zip
(all): Put `indicate-empty-lines' in fringe group instead of display group.
Make `indicate-buffer-boundaries' customizable through Custom.
-rw-r--r--lisp/cus-start.el36
1 files changed, 35 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index fdf8c8a3aae..5b83f9fbb0f 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -65,7 +65,41 @@ since it could result in memory overflow and make Emacs crash."
65 (ctl-arrow display boolean) 65 (ctl-arrow display boolean)
66 (truncate-lines display boolean) 66 (truncate-lines display boolean)
67 (selective-display-ellipses display boolean) 67 (selective-display-ellipses display boolean)
68 (indicate-empty-lines display boolean "21.1") 68 (indicate-empty-lines fringe boolean "21.1")
69 (indicate-buffer-boundaries
70 fringe
71 (choice
72 (const :tag "No indicators" nil)
73 (const :tag "On left, with arrows" left)
74 (const :tag "On right, with arrows" right)
75 (const :tag "On left, no arrows" t)
76 (set :tag "Other"
77 (choice :tag "Default"
78 :value (t . left)
79 (const :tag "Do not show" (t . nil))
80 (const :tag "On the left" (t . left))
81 (const :tag "On the right" (t . right)))
82 (choice :tag "Top"
83 :value (top . left)
84 (const :tag "Do not show" (top . nil))
85 (const :tag "On the left" (top . left))
86 (const :tag "On the right" (top . right)))
87 (choice :tag "Bottom"
88 :value (bottom . left)
89 (const :tag "Do not show" (bottom . nil))
90 (const :tag "On the left" (bottom . left))
91 (const :tag "On the right" (bottom . right)))
92 (choice :tag "Up arrow"
93 :value (up . left)
94 (const :tag "Do not show" (up . nil))
95 (const :tag "On the left" (up . left))
96 (const :tag "On the right" (up . right)))
97 (choice :tag "Down arrow"
98 :value (down . left)
99 (const :tag "Do not show" (down . nil))
100 (const :tag "On the left" (down . left))
101 (const :tag "On the right" (down . right)))))
102 "22.1")
69 (scroll-up-aggressively windows 103 (scroll-up-aggressively windows
70 (choice (const :tag "off" nil) number) 104 (choice (const :tag "off" nil) number)
71 "21.1") 105 "21.1")