From: Ken Brown Date: Wed, 18 Nov 2015 18:34:47 +0000 (-0500) Subject: Silence byte-compiler warning X-Git-Tag: emacs-25.0.90~753 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ce7ef5b5e02ba2ed7899ef95c3b44791dc1575ae;p=emacs.git Silence byte-compiler warning * lisp/server.el (server-process-filter): Silence byte-compiler warning. --- diff --git a/lisp/server.el b/lisp/server.el index 59fd973115b..20fa27c20bf 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -1173,6 +1173,7 @@ The following commands are accepted by the client: ;; handler on MS-Windows, in which case FILENAME ;; might start with a drive letter. (when (and (eq system-type 'cygwin) + (fboundp 'cygwin-convert-file-name-from-windows) (string-match "\\`[A-Za-z]:" file)) (setq file (cygwin-convert-file-name-from-windows file))) (setq file (expand-file-name file dir))