diff options
| author | Gerd Moellmann | 1999-11-18 16:07:35 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-18 16:07:35 +0000 |
| commit | 3a1aa59765119dbcff4b6bc6a27dd771ab1672d6 (patch) | |
| tree | a8d224689f3b48403af5c51cf59c6a2a31089d69 | |
| parent | 393759c7a0c2c28b3fb9bfa0edf7428dbc9e190b (diff) | |
| download | emacs-3a1aa59765119dbcff4b6bc6a27dd771ab1672d6.tar.gz emacs-3a1aa59765119dbcff4b6bc6a27dd771ab1672d6.zip | |
Clean up comment at the start of the file.
Remove RCS id.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/speedbar.el | 38 |
2 files changed, 6 insertions, 35 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b9cd6a826a..508be0a7845 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 1999-11-18 Gerd Moellmann <gerd@gnu.org> | 1 | 1999-11-18 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * speedbar.el: Clean up comment at the start of the file. | ||
| 4 | Remove RCS id. | ||
| 5 | |||
| 3 | * progmodes/compile.el (compilation-parse-errors): Use | 6 | * progmodes/compile.el (compilation-parse-errors): Use |
| 4 | compilation-buffer-p instead of testing major-mode. | 7 | compilation-buffer-p instead of testing major-mode. |
| 5 | 8 | ||
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 3c1a3292404..c8a12879fd7 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | ;; Version: 0.8.1 | 6 | ;; Version: 0.8.1 |
| 7 | ;; Keywords: file, tags, tools | 7 | ;; Keywords: file, tags, tools |
| 8 | ;; X-RCS: $Id: speedbar.el,v 1.23 1999/06/04 18:22:55 kwzh Exp rms $ | ||
| 9 | 8 | ||
| 10 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 11 | 10 | ||
| @@ -32,33 +31,16 @@ | |||
| 32 | ;; | 31 | ;; |
| 33 | ;; Starting Speedbar: | 32 | ;; Starting Speedbar: |
| 34 | ;; | 33 | ;; |
| 35 | ;; If speedbar came to you as a part of Emacs, simply type | 34 | ;; Simply type `M-x speedbar', and it will be autoloaded for you. |
| 36 | ;; `M-x speedbar', and it will be autoloaded for you. | 35 | |
| 37 | ;; | ||
| 38 | ;; If speedbar is not a part of your distribution, then add | ||
| 39 | ;; this to your .emacs file: | ||
| 40 | ;; | ||
| 41 | ;; (autoload 'speedbar-frame-mode "speedbar" "Popup a speedbar frame" t) | ||
| 42 | ;; (autoload 'speedbar-get-focus "speedbar" "Jump to speedbar frame" t) | ||
| 43 | ;; | ||
| 44 | ;; If you want to choose it from a menu, such as "Tools", you can do this: | 36 | ;; If you want to choose it from a menu, such as "Tools", you can do this: |
| 45 | ;; | 37 | ;; |
| 46 | ;; Emacs: | ||
| 47 | ;; (define-key-after (lookup-key global-map [menu-bar tools]) | 38 | ;; (define-key-after (lookup-key global-map [menu-bar tools]) |
| 48 | ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar]) | 39 | ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar]) |
| 49 | ;; | 40 | ;; |
| 50 | ;; XEmacs: | ||
| 51 | ;; (add-menu-button '("Tools") | ||
| 52 | ;; ["Speedbar" speedbar-frame-mode | ||
| 53 | ;; :style toggle | ||
| 54 | ;; :selected (and (boundp 'speedbar-frame) | ||
| 55 | ;; (frame-live-p speedbar-frame) | ||
| 56 | ;; (frame-visible-p speedbar-frame))] | ||
| 57 | ;; "--") | ||
| 58 | ;; | ||
| 59 | ;; If you want to access speedbar using only the keyboard, do this: | 41 | ;; If you want to access speedbar using only the keyboard, do this: |
| 60 | ;; | 42 | ;; |
| 61 | ;; (global-set-key [(f4)] 'speedbar-get-focus) | 43 | ;; (global-set-key [f4] 'speedbar-get-focus) |
| 62 | ;; | 44 | ;; |
| 63 | ;; This will let you hit f4 (or whatever key you choose) to jump | 45 | ;; This will let you hit f4 (or whatever key you choose) to jump |
| 64 | ;; focus to the speedbar frame. Pressing it again will bring you back | 46 | ;; focus to the speedbar frame. Pressing it again will bring you back |
| @@ -110,23 +92,9 @@ | |||
| 110 | ;; into sub-lists. A long flat list can be used instead if needed. | 92 | ;; into sub-lists. A long flat list can be used instead if needed. |
| 111 | ;; Other filters could be easily added. | 93 | ;; Other filters could be easily added. |
| 112 | ;; | 94 | ;; |
| 113 | ;; Users of XEmacs previous to 20 may want to change the default | ||
| 114 | ;; timeouts for `speedbar-update-speed' to something longer as XEmacs | ||
| 115 | ;; doesn't have idle timers, the speedbar timer keeps going off | ||
| 116 | ;; arbitrarily while you're typing. It's quite pesky. | ||
| 117 | ;; | ||
| 118 | ;; Users of really old emacsen without the needed timers will not | ||
| 119 | ;; have speedbar updating automatically. Use "r" to refresh the | ||
| 120 | ;; display after changing directories. Remember, do not interrupt the | ||
| 121 | ;; stealthy updates or your display may not be completely refreshed. | ||
| 122 | ;; | ||
| 123 | ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very | 95 | ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very |
| 124 | ;; well. Use the imenu keywords from tex-mode.el for better results. | 96 | ;; well. Use the imenu keywords from tex-mode.el for better results. |
| 125 | ;; | 97 | ;; |
| 126 | ;; This file requires the library package assoc (association lists) | ||
| 127 | ;; and the package custom (for easy configuration of speedbar) | ||
| 128 | ;; http://www.dina.kvl.dk/~abraham/custom/ | ||
| 129 | ;; | ||
| 130 | ;;; Developing for speedbar | 98 | ;;; Developing for speedbar |
| 131 | ;; | 99 | ;; |
| 132 | ;; Adding a speedbar specialized display mode: | 100 | ;; Adding a speedbar specialized display mode: |