summaryrefslogtreecommitdiff
path: root/lisp/net/tramp-compat.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2010-09-17 09:58:07 +0200
committerMichael Albinus <michael.albinus@gmx.de>2010-09-17 09:58:07 +0200
commit1a9dc3b588164a97382127f51f1dda9e74abcf3d (patch)
tree428342ead24962b2b98d05dd34acff5690f4822e /lisp/net/tramp-compat.el
parent318a04c60bf855b832b5c90e220bf3b576e1273e (diff)
downloademacs-1a9dc3b588164a97382127f51f1dda9e74abcf3d.tar.gz
* net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
defmacro.
Diffstat (limited to 'lisp/net/tramp-compat.el')
-rw-r--r--lisp/net/tramp-compat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-compat.el b/lisp/net/tramp-compat.el
index 4da2fb33771..5156711fa47 100644
--- a/lisp/net/tramp-compat.el
+++ b/lisp/net/tramp-compat.el
@@ -184,7 +184,7 @@
;; `with-temp-message' does not exists in XEmacs.
(if (fboundp 'with-temp-message)
(defalias 'tramp-compat-with-temp-message 'with-temp-message)
- (defun tramp-compat-with-temp-message (message &rest body)
+ (defmacro tramp-compat-with-temp-message (message &rest body)
"Display MESSAGE temporarily if non-nil while BODY is evaluated."
`(progn ,@body)))