diff options
| author | Andreas Schwab | 1998-09-18 09:21:27 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-09-18 09:21:27 +0000 |
| commit | c6e5033d0e5602857df2e8a82ffbf716c94d3ccb (patch) | |
| tree | 95db118f6591178a7461fc9a312915cd48bccb1f | |
| parent | 6f0984e52cb3a689c7a17c1789b92fdd756e1ce4 (diff) | |
| download | emacs-c6e5033d0e5602857df2e8a82ffbf716c94d3ccb.tar.gz emacs-c6e5033d0e5602857df2e8a82ffbf716c94d3ccb.zip | |
(speedbar-initial-expansion-list-name): Fix
customize type.
| -rw-r--r-- | lisp/speedbar.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index df7bdb056d5..e605991c6c0 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | ;; Version: 0.7.2c | 6 | ;; Version: 0.7.2c |
| 7 | ;; Keywords: file, tags, tools | 7 | ;; Keywords: file, tags, tools |
| 8 | ;; X-RCS: $Id: speedbar.el,v 1.14 1998/09/12 13:56:25 zappo Exp zappo $ | 8 | ;; X-RCS: $Id: speedbar.el,v 1.15 1998/09/12 13:58:46 zappo Exp $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -272,7 +272,9 @@ inserting buttons.") | |||
| 272 | The expansion list `speedbar-initial-expansion-mode-alist' contains | 272 | The expansion list `speedbar-initial-expansion-mode-alist' contains |
| 273 | the names and associated functions to use for buttons in speedbar." | 273 | the names and associated functions to use for buttons in speedbar." |
| 274 | :group 'speedbar | 274 | :group 'speedbar |
| 275 | :type '(radio (const :tag "File Directorys" file) | 275 | :type '(radio (const :tag "File Directories" "files") |
| 276 | (const "buffers") | ||
| 277 | (const "quick buffers") | ||
| 276 | )) | 278 | )) |
| 277 | 279 | ||
| 278 | (defvar speedbar-previously-used-expansion-list-name "files" | 280 | (defvar speedbar-previously-used-expansion-list-name "files" |