]> code.delx.au - gnu-emacs/blobdiff - lisp/net/tramp-compat.el
Pacify byte compiler in tramp.el
[gnu-emacs] / lisp / net / tramp-compat.el
index f1f31d0398e57af3591fcb8b4a2cf2ced52fc1c4..0e9fcb501a79e2cb0481d140f3f0cb8268e398a8 100644 (file)
@@ -50,9 +50,9 @@
 (unless (boundp 'remote-file-name-inhibit-cache)
   (defvar remote-file-name-inhibit-cache nil))
 
-;; For not existing functions, or functions with a changed argument
-;; list, there are compiler warnings.  We want to avoid them in cases
-;; we know what we do.
+;; For not existing functions, obsolete functions, or functions with a
+;; changed argument list, there are compiler warnings.  We want to
+;; avoid them in cases we know what we do.
 (defmacro tramp-compat-funcall (function &rest arguments)
   `(when (or (subrp ,function) (functionp ,function))
      (with-no-warnings (funcall ,function ,@arguments))))