diff options
author | Miles Bader <miles@gnu.org> | 2003-04-02 04:31:05 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2003-04-02 04:31:05 +0000 |
commit | acfbcf12afd19ac5c474afdd48d020b6a25772d2 (patch) | |
tree | bc5873b65dfc5832fe6ee3c9260c197137aa5134 /lisp/scroll-bar.el | |
parent | 7f81de12af712c9098a72b481e921d81c367775b (diff) | |
download | emacs-acfbcf12afd19ac5c474afdd48d020b6a25772d2.tar.gz |
(scroll-bar-mode): Correctly specify `nil' choice.
Diffstat (limited to 'lisp/scroll-bar.el')
-rw-r--r-- | lisp/scroll-bar.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ ;;; scroll-bar.el --- window system-independent scroll bar support -;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001 +;; Copyright (C) 1993, 1994, 1995, 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -97,7 +97,7 @@ and `right' (scroll bars on right). To set this variable in a Lisp program, use `set-scroll-bar-mode' to make it take real effect. Setting the variable with a customization buffer also takes effect." - :type '(choice (const :tag "none (nil)") + :type '(choice (const :tag "none (nil)" nil) (const left) (const right)) :group 'frames |