diff options
| author | Ken Brown | 2015-11-18 13:34:47 -0500 |
|---|---|---|
| committer | Ken Brown | 2015-11-18 13:34:47 -0500 |
| commit | ce7ef5b5e02ba2ed7899ef95c3b44791dc1575ae (patch) | |
| tree | 855ede093643c89ceba6845c4b029579bbaa6ef3 | |
| parent | bb4303c536a2ac5fe683a711ef8072074f77670e (diff) | |
| download | emacs-ce7ef5b5e02ba2ed7899ef95c3b44791dc1575ae.tar.gz emacs-ce7ef5b5e02ba2ed7899ef95c3b44791dc1575ae.zip | |
Silence byte-compiler warning
* lisp/server.el (server-process-filter): Silence byte-compiler
warning.
| -rw-r--r-- | lisp/server.el | 1 |
1 files changed, 1 insertions, 0 deletions
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: | |||
| 1173 | ;; handler on MS-Windows, in which case FILENAME | 1173 | ;; handler on MS-Windows, in which case FILENAME |
| 1174 | ;; might start with a drive letter. | 1174 | ;; might start with a drive letter. |
| 1175 | (when (and (eq system-type 'cygwin) | 1175 | (when (and (eq system-type 'cygwin) |
| 1176 | (fboundp 'cygwin-convert-file-name-from-windows) | ||
| 1176 | (string-match "\\`[A-Za-z]:" file)) | 1177 | (string-match "\\`[A-Za-z]:" file)) |
| 1177 | (setq file (cygwin-convert-file-name-from-windows file))) | 1178 | (setq file (cygwin-convert-file-name-from-windows file))) |
| 1178 | (setq file (expand-file-name file dir)) | 1179 | (setq file (expand-file-name file dir)) |