diff options
| author | Glenn Morris | 2020-01-16 23:14:00 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-01-16 23:14:00 -0800 |
| commit | b615c1fa8c78413e24c65206f15c6cb03c8175d4 (patch) | |
| tree | 65cde887d744507603c373e61be780be9c4988f6 | |
| parent | 680021ebdeeed7c31222bb165715a234e1c4685f (diff) | |
| download | emacs-b615c1fa8c78413e24c65206f15c6cb03c8175d4.tar.gz emacs-b615c1fa8c78413e24c65206f15c6cb03c8175d4.zip | |
* lisp/progmodes/vhdl-mode.el (speedbar-load-hook): Silence compiler.
| -rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index b225a9b1d9a..0677d36fbc7 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -16148,7 +16148,7 @@ expansion function)." | |||
| 16148 | 16148 | ||
| 16149 | ;; initialize speedbar | 16149 | ;; initialize speedbar |
| 16150 | (if (not (boundp 'speedbar-frame)) | 16150 | (if (not (boundp 'speedbar-frame)) |
| 16151 | (add-hook 'speedbar-load-hook 'vhdl-speedbar-initialize) | 16151 | (with-no-warnings (add-hook 'speedbar-load-hook 'vhdl-speedbar-initialize)) |
| 16152 | (vhdl-speedbar-initialize) | 16152 | (vhdl-speedbar-initialize) |
| 16153 | (when speedbar-frame (vhdl-speedbar-refresh))) | 16153 | (when speedbar-frame (vhdl-speedbar-refresh))) |
| 16154 | 16154 | ||