diff options
| author | Andreas Schwab | 2004-10-29 20:59:04 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-10-29 20:59:04 +0000 |
| commit | 88aab7b456af9fc10fdcd74af0a68299c64ee9d6 (patch) | |
| tree | fe246a50027e609dc79bb6695b212c55fd91548c | |
| parent | ab60bd74039853d94fd4b9715724af9444879b93 (diff) | |
| download | emacs-88aab7b456af9fc10fdcd74af0a68299c64ee9d6.tar.gz emacs-88aab7b456af9fc10fdcd74af0a68299c64ee9d6.zip | |
(speedbar-frame-parameters): Improve customize type.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/speedbar.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 764b5e77bb3..f6a51a4831e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-10-29 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * speedbar.el (speedbar-frame-parameters): Improve customize type. | ||
| 4 | |||
| 1 | 2004-10-29 Sam Steingold <sds@gnu.org> | 5 | 2004-10-29 Sam Steingold <sds@gnu.org> |
| 2 | 6 | ||
| 3 | * mouse.el (mouse-show-mark): Repleace the last occurrence of | 7 | * mouse.el (mouse-show-mark): Repleace the last occurrence of |
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index db16f2f78f3..c182dffdba7 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el | |||
| @@ -354,7 +354,9 @@ Any parameter supported by a frame may be added. The parameter `height' | |||
| 354 | will be initialized to the height of the frame speedbar is | 354 | will be initialized to the height of the frame speedbar is |
| 355 | attached to and added to this list before the new frame is initialized." | 355 | attached to and added to this list before the new frame is initialized." |
| 356 | :group 'speedbar | 356 | :group 'speedbar |
| 357 | :type '(repeat (sexp :tag "Parameter:"))) | 357 | :type '(repeat (cons :format "%v" |
| 358 | (symbol :tag "Parameter") | ||
| 359 | (sexp :tag "Value")))) | ||
| 358 | 360 | ||
| 359 | ;; These values by Hrvoje Niksic <hniksic@srce.hr> | 361 | ;; These values by Hrvoje Niksic <hniksic@srce.hr> |
| 360 | (defcustom speedbar-frame-plist | 362 | (defcustom speedbar-frame-plist |