* lisp/emacs-lisp/advice.el (ad-compile-function):
Define warning-suppress-types before we let-bind it. Fixes: debbugs:6275
This commit is contained in:
parent
8c6eab5a27
commit
989bc97f04
2 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/advice.el (ad-compile-function):
|
||||
Define warning-suppress-types before we let-bind it (bug#6275).
|
||||
|
||||
* vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
|
||||
declare it, make it buffer-local and permanent-local (bug#6324).
|
||||
(vc-resynch-window): Adjust name.
|
||||
|
|
|
@ -2684,6 +2684,8 @@ For that it has to be fbound with a non-autoload definition."
|
|||
;; because `byte-compile' uses `fset':
|
||||
(ad-with-auto-activation-disabled
|
||||
(require 'bytecomp)
|
||||
(require 'warnings) ;To define warning-suppress-types
|
||||
;before we let-bind it.
|
||||
(let ((symbol (make-symbol "advice-compilation"))
|
||||
(byte-compile-warnings byte-compile-warnings)
|
||||
;; Don't pop up windows showing byte-compiler warnings.
|
||||
|
|
Loading…
Add table
Reference in a new issue