diff options
| author | Glenn Morris | 2013-05-21 20:13:56 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-05-21 20:13:56 -0700 |
| commit | 0cdffd7dd407452c8d60931736a5be52cf9ed7b6 (patch) | |
| tree | 0ce2f01293b833e673dc341aa7396d2e78eb0d0e /lisp/ChangeLog | |
| parent | ab56a6f42c21c8c074b5e50a928955a8d69768f7 (diff) | |
| download | emacs-0cdffd7dd407452c8d60931736a5be52cf9ed7b6.tar.gz emacs-0cdffd7dd407452c8d60931736a5be52cf9ed7b6.zip | |
Small speedbar-related clean-up
* lisp/dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
Remove unnecessary declarations.
(dframe-message): Doc fix.
* lisp/info.el (dframe-select-attached-frame, dframe-current-frame):
Declare.
* lisp/speedbar.el (speedbar-message): Make it an obsolete alias.
Update all callers.
(speedbar-with-attached-buffer)
(speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
(speedbar-with-writable): Use backquote.
* lisp/emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
rather than speedbar- aliases.
* lisp/mail/rmail.el: Load dframe rather than speedbar when compiling.
(speedbar-make-specialized-keymap, speedbar-insert-button)
(dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
(speedbar-do-function-pointer): Declare.
(rmail-speedbar-button, rmail-speedbar-find-file)
(rmail-speedbar-move-message):
Use dframe-with-attached-buffer rather than speedbar- alias.
* lisp/progmodes/gud.el: Load dframe rather than speedbar when compiling.
(dframe-message, speedbar-make-specialized-keymap)
(speedbar-add-expansion-list, speedbar-mode-functions-list)
(speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
(speedbar-insert-button, dframe-select-attached-frame)
(dframe-maybee-jump-to-attached-frame)
(speedbar-change-initial-expansion-list)
(speedbar-previously-used-expansion-list-name): Declare.
(gud-speedbar-item-info, gud-gdb-goto-stackframe):
Use dframe-message, dframe-with-attached-buffer rather than
speedbar- aliases.
(gud-sentinel): Silence compiler.
* lisp/progmodes/vhdl-mode.el (speedbar-refresh)
(speedbar-do-function-pointer, speedbar-add-supported-extension)
(speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
(speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
(speedbar-extension-list-to-regex, speedbar-directory-buttons)
(speedbar-file-lists, speedbar-make-tag-line)
(speedbar-line-directory, speedbar-goto-this-file)
(speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
(speedbar-delete-subblock, speedbar-position-cursor-on-line)
(speedbar-make-button, speedbar-reset-scanners)
(speedbar-files-item-info, speedbar-line-text)
(speedbar-find-file-in-frame, speedbar-set-timer)
(dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
(speedbar-with-writable): Do not (re)define it.
(vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
rather than speedbar- alias.
* lisp/cedet/ede/speedbar.el (ede-file-find, ede-tag-find):
* lisp/cedet/semantic/sb.el (semantic-sb-token-jump):
Use dframe-maybee-jump-to-attached-frame rather than speedbar- alias.
* lisp/mh-e/mh-speed.el (mh-speed-view):
Use dframe-with-attached-buffer rather than speedbar- alias.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a74fa4a21f..c97eb3b2cb7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,57 @@ | |||
| 1 | 2013-05-22 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): | ||
| 4 | Remove unnecessary declarations. | ||
| 5 | (dframe-message): Doc fix. | ||
| 6 | |||
| 7 | * info.el (dframe-select-attached-frame, dframe-current-frame): | ||
| 8 | Declare. | ||
| 9 | |||
| 10 | * speedbar.el (speedbar-message): Make it an obsolete alias. | ||
| 11 | Update all callers. | ||
| 12 | (speedbar-with-attached-buffer) | ||
| 13 | (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete. | ||
| 14 | (speedbar-with-writable): Use backquote. | ||
| 15 | * emacs-lisp/eieio-opt.el (eieio-describe-class-sb): | ||
| 16 | * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click): | ||
| 17 | Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame | ||
| 18 | rather than speedbar- aliases. | ||
| 19 | * mail/rmail.el: Load dframe rather than speedbar when compiling. | ||
| 20 | (speedbar-make-specialized-keymap, speedbar-insert-button) | ||
| 21 | (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame) | ||
| 22 | (speedbar-do-function-pointer): Declare. | ||
| 23 | (rmail-speedbar-button, rmail-speedbar-find-file) | ||
| 24 | (rmail-speedbar-move-message): | ||
| 25 | Use dframe-with-attached-buffer rather than speedbar- alias. | ||
| 26 | * progmodes/gud.el: Load dframe rather than speedbar when compiling. | ||
| 27 | (dframe-message, speedbar-make-specialized-keymap) | ||
| 28 | (speedbar-add-expansion-list, speedbar-mode-functions-list) | ||
| 29 | (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support) | ||
| 30 | (speedbar-insert-button, dframe-select-attached-frame) | ||
| 31 | (dframe-maybee-jump-to-attached-frame) | ||
| 32 | (speedbar-change-initial-expansion-list) | ||
| 33 | (speedbar-previously-used-expansion-list-name): Declare. | ||
| 34 | (gud-speedbar-item-info, gud-gdb-goto-stackframe): | ||
| 35 | Use dframe-message, dframe-with-attached-buffer rather than | ||
| 36 | speedbar- aliases. | ||
| 37 | (gud-sentinel): Silence compiler. | ||
| 38 | * progmodes/vhdl-mode.el (speedbar-refresh) | ||
| 39 | (speedbar-do-function-pointer, speedbar-add-supported-extension) | ||
| 40 | (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap) | ||
| 41 | (speedbar-change-initial-expansion-list, speedbar-add-expansion-list) | ||
| 42 | (speedbar-extension-list-to-regex, speedbar-directory-buttons) | ||
| 43 | (speedbar-file-lists, speedbar-make-tag-line) | ||
| 44 | (speedbar-line-directory, speedbar-goto-this-file) | ||
| 45 | (speedbar-center-buffer-smartly, speedbar-change-expand-button-char) | ||
| 46 | (speedbar-delete-subblock, speedbar-position-cursor-on-line) | ||
| 47 | (speedbar-make-button, speedbar-reset-scanners) | ||
| 48 | (speedbar-files-item-info, speedbar-line-text) | ||
| 49 | (speedbar-find-file-in-frame, speedbar-set-timer) | ||
| 50 | (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare. | ||
| 51 | (speedbar-with-writable): Do not (re)define it. | ||
| 52 | (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame | ||
| 53 | rather than speedbar- alias. | ||
| 54 | |||
| 1 | 2013-05-21 Leo Liu <sdl.web@gmail.com> | 55 | 2013-05-21 Leo Liu <sdl.web@gmail.com> |
| 2 | 56 | ||
| 3 | * progmodes/octave.el (octave-mode-menu): Update and re-organize | 57 | * progmodes/octave.el (octave-mode-menu): Update and re-organize |