]> git.eshelyaron.com Git - emacs.git/commitdiff
; Tramp: Suppress compiler warnings.
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 3 Oct 2015 08:09:41 +0000 (10:09 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 3 Oct 2015 08:09:41 +0000 (10:09 +0200)
lisp/net/trampver.el

index ab671204e32dfd865585c857d5680b33c9eba2a3..bba27e394690bd4f504232815fd015b2557490ee 100644 (file)
@@ -42,7 +42,8 @@
   "Try to return as a string the repository revision of the Tramp sources."
   (unless (featurep 'xemacs)
     (let ((dir
-          (funcall 'locate-dominating-file (locate-library "tramp") ".git")))
+          (funcall
+           (intern "locate-dominating-file") (locate-library "tramp") ".git")))
       (when dir
        (with-temp-buffer
          (let ((default-directory (file-name-as-directory dir)))
@@ -50,7 +51,8 @@
                  (ignore-errors
                    (call-process "git" nil '(t nil) nil "rev-parse" "HEAD")))
                 (not (zerop (buffer-size)))
-                (tramp-compat-replace-regexp-in-string
+                (funcall
+                 (intern "tramp-compat-replace-regexp-in-string")
                  "\n" "" (buffer-string)))))))))
 
 ;; Check for (X)Emacs version.