diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2013-08-17 12:20:15 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2013-08-17 12:20:15 +0200 |
commit | f95527c8b2c60a8e883b3e243db76e7ddddf82cf (patch) | |
tree | e4908935fd29175b4f4705d7d744273dc5b79bdb /lisp/net/tramp-gw.el | |
parent | d311017740d3a8757c3fa5a35f52b0aeb25f10ca (diff) | |
download | emacs-f95527c8b2c60a8e883b3e243db76e7ddddf82cf.tar.gz emacs-f95527c8b2c60a8e883b3e243db76e7ddddf82cf.tar.bz2 emacs-f95527c8b2c60a8e883b3e243db76e7ddddf82cf.zip |
* net/tramp.el:
* net/tramp-adb.el:
* net/tramp-cmds.el:
* net/tramp-ftp.el:
* net/tramp-gvfs.el:
* net/tramp-gw.el:
* net/tramp-sh.el: Don't wrap external variable declarations by
`eval-when-compile'.
Diffstat (limited to 'lisp/net/tramp-gw.el')
-rw-r--r-- | lisp/net/tramp-gw.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/tramp-gw.el b/lisp/net/tramp-gw.el index 7d221618f42..53dbdbc45d4 100644 --- a/lisp/net/tramp-gw.el +++ b/lisp/net/tramp-gw.el @@ -36,8 +36,8 @@ ;; Pacify byte-compiler. (eval-when-compile (require 'cl) - (require 'custom) - (defvar socks-noproxy)) + (require 'custom)) +(defvar socks-noproxy) ;; We don't add the following methods to `tramp-methods', in order to ;; exclude them from file name completion. |