]> git.eshelyaron.com Git - emacs.git/commitdiff
(scroll-bar-mode): Correctly specify `nil' choice.
authorMiles Bader <miles@gnu.org>
Wed, 2 Apr 2003 04:31:22 +0000 (04:31 +0000)
committerMiles Bader <miles@gnu.org>
Wed, 2 Apr 2003 04:31:22 +0000 (04:31 +0000)
lisp/ChangeLog
lisp/scroll-bar.el

index 9cf924d8a5aa4530103f1150efcacef89d0ef025..79b93ec904e03b676738a671c3082897c07e9033 100644 (file)
@@ -1,3 +1,7 @@
+2003-04-02  Miles Bader  <miles@gnu.org>
+
+       * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice.
+
 2003-04-01  Dave Love  <fx@gnu.org>
 
        * time.el: Doc fixes.
index 74fd948ee684c19fb1f8eba2076033a77840ea3b..1ee1b462db4c8d02839ff0871fa28c126a201e2e 100644 (file)
@@ -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