aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2003-04-02 04:31:22 +0000
committerMiles Bader2003-04-02 04:31:22 +0000
commit64453f32d02ab3e2066ee8230def550fd125d299 (patch)
tree89de4407c54224517c6a7b5c77d95810d161d99c
parentc7d565f4dcc8d231d9c12825efebe419d6c06495 (diff)
downloademacs-64453f32d02ab3e2066ee8230def550fd125d299.tar.gz
emacs-64453f32d02ab3e2066ee8230def550fd125d299.zip
(scroll-bar-mode): Correctly specify `nil' choice.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/scroll-bar.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9cf924d8a5a..79b93ec904e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-04-02 Miles Bader <miles@gnu.org>
2
3 * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice.
4
12003-04-01 Dave Love <fx@gnu.org> 52003-04-01 Dave Love <fx@gnu.org>
2 6
3 * time.el: Doc fixes. 7 * time.el: Doc fixes.
diff --git a/lisp/scroll-bar.el b/lisp/scroll-bar.el
index 74fd948ee68..1ee1b462db4 100644
--- a/lisp/scroll-bar.el
+++ b/lisp/scroll-bar.el
@@ -1,6 +1,6 @@
1;;; scroll-bar.el --- window system-independent scroll bar support 1;;; scroll-bar.el --- window system-independent scroll bar support
2 2
3;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001 3;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001, 2003
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Maintainer: FSF 6;; Maintainer: FSF
@@ -97,7 +97,7 @@ and `right' (scroll bars on right).
97To set this variable in a Lisp program, use `set-scroll-bar-mode' 97To set this variable in a Lisp program, use `set-scroll-bar-mode'
98to make it take real effect. 98to make it take real effect.
99Setting the variable with a customization buffer also takes effect." 99Setting the variable with a customization buffer also takes effect."
100 :type '(choice (const :tag "none (nil)") 100 :type '(choice (const :tag "none (nil)" nil)
101 (const left) 101 (const left)
102 (const right)) 102 (const right))
103 :group 'frames 103 :group 'frames