Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2b8c974a
Commit
2b8c974a
authored
Feb 15, 2010
by
Stefan Monnier
Browse files
(ad-compile-function): Suppress byte-compiler warnings, since it is annoying
for the user to see them each time he runs the code.
parent
7540f029
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
lisp/ChangeLog
lisp/ChangeLog
+8
-2
lisp/emacs-lisp/advice.el
lisp/emacs-lisp/advice.el
+3
-1
No files found.
lisp/ChangeLog
View file @
2b8c974a
2010-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
warnings, since it is annoying for the user to see them each time he
runs the code.
2010-02-15 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-process-actions, tramp-read-passwd):
...
...
@@ -5,8 +11,8 @@
instead of PROC for caching "first-password-request". Otherwise,
new processes would not profit from passwords already entered.
* net/tramp-cache.el (tramp-dump-connection-properties):
Don't
save "first-password-request" property.
* net/tramp-cache.el (tramp-dump-connection-properties):
Don't
save "first-password-request" property.
2010-02-14 Juanma Barranquero <lekktu@gmail.com>
...
...
lisp/emacs-lisp/advice.el
View file @
2b8c974a
...
...
@@ -2685,7 +2685,9 @@ For that it has to be fbound with a non-autoload definition."
(
ad-with-auto-activation-disabled
(
require
'bytecomp
)
(
let
((
symbol
(
make-symbol
"advice-compilation"
))
(
byte-compile-warnings
byte-compile-warnings
))
(
byte-compile-warnings
byte-compile-warnings
)
;; Don't pop up windows showing byte-compiler warnings.
(
warning-suppress-types
'
(
bytecomp
)))
(
if
(
featurep
'cl
)
(
byte-compile-disable-warning
'cl-functions
))
(
fset
symbol
(
symbol-function
function
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment