aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/net/tramp-adb.el5
-rw-r--r--lisp/net/tramp-cmds.el5
-rw-r--r--lisp/net/tramp-ftp.el8
-rw-r--r--lisp/net/tramp-gvfs.el4
-rw-r--r--lisp/net/tramp-gw.el4
-rw-r--r--lisp/net/tramp-sh.el8
-rw-r--r--lisp/net/tramp.el12
8 files changed, 33 insertions, 24 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8440647737c..28431e9a08d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,14 @@
12013-08-17 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/tramp.el:
4 * net/tramp-adb.el:
5 * net/tramp-cmds.el:
6 * net/tramp-ftp.el:
7 * net/tramp-gvfs.el:
8 * net/tramp-gw.el:
9 * net/tramp-sh.el: Don't wrap external variable declarations by
10 `eval-when-compile'.
11
12013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org> 122013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 13
3 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs 14 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index 42fa3165847..8ddbe254380 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -37,9 +37,8 @@
37(require 'time-date) 37(require 'time-date)
38 38
39;; Pacify byte-compiler. 39;; Pacify byte-compiler.
40(eval-when-compile 40(defvar directory-sep-char)
41 (defvar directory-sep-char) 41(defvar dired-move-to-filename-regexp)
42 (defvar dired-move-to-filename-regexp))
43 42
44(defcustom tramp-adb-program "adb" 43(defcustom tramp-adb-program "adb"
45 "Name of the Android Debug Bridge program." 44 "Name of the Android Debug Bridge program."
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el
index d377bfc8ec2..937db34a346 100644
--- a/lisp/net/tramp-cmds.el
+++ b/lisp/net/tramp-cmds.el
@@ -31,9 +31,8 @@
31(require 'tramp) 31(require 'tramp)
32 32
33;; Pacify byte-compiler. 33;; Pacify byte-compiler.
34(eval-when-compile 34(defvar reporter-eval-buffer)
35 (defvar reporter-eval-buffer) 35(defvar reporter-prompt-for-summary-p)
36 (defvar reporter-prompt-for-summary-p))
37 36
38(defun tramp-list-tramp-buffers () 37(defun tramp-list-tramp-buffers ()
39 "Return a list of all Tramp connection buffers." 38 "Return a list of all Tramp connection buffers."
diff --git a/lisp/net/tramp-ftp.el b/lisp/net/tramp-ftp.el
index fbc02911d93..9e1be06a2b1 100644
--- a/lisp/net/tramp-ftp.el
+++ b/lisp/net/tramp-ftp.el
@@ -33,10 +33,10 @@
33;; Pacify byte-compiler. 33;; Pacify byte-compiler.
34(eval-when-compile 34(eval-when-compile
35 (require 'cl) 35 (require 'cl)
36 (require 'custom) 36 (require 'custom))
37 (defvar ange-ftp-ftp-name-arg) 37(defvar ange-ftp-ftp-name-arg)
38 (defvar ange-ftp-ftp-name-res) 38(defvar ange-ftp-ftp-name-res)
39 (defvar ange-ftp-name-format)) 39(defvar ange-ftp-name-format)
40 40
41;; Disable Ange-FTP from file-name-handler-alist. 41;; Disable Ange-FTP from file-name-handler-alist.
42;; To handle EFS, the following functions need to be dealt with: 42;; To handle EFS, the following functions need to be dealt with:
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 7c41499a2e9..f70074ba6e9 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -107,8 +107,8 @@
107;; Pacify byte-compiler. 107;; Pacify byte-compiler.
108(eval-when-compile 108(eval-when-compile
109 (require 'cl) 109 (require 'cl)
110 (require 'custom) 110 (require 'custom))
111 (defvar ls-lisp-use-insert-directory-program)) 111(defvar ls-lisp-use-insert-directory-program)
112 112
113;;;###tramp-autoload 113;;;###tramp-autoload
114(defcustom tramp-gvfs-methods '("dav" "davs" "obex" "synce") 114(defcustom tramp-gvfs-methods '("dav" "davs" "obex" "synce")
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 @@
36;; Pacify byte-compiler. 36;; Pacify byte-compiler.
37(eval-when-compile 37(eval-when-compile
38 (require 'cl) 38 (require 'cl)
39 (require 'custom) 39 (require 'custom))
40 (defvar socks-noproxy)) 40(defvar socks-noproxy)
41 41
42;; We don't add the following methods to `tramp-methods', in order to 42;; We don't add the following methods to `tramp-methods', in order to
43;; exclude them from file name completion. 43;; exclude them from file name completion.
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 6e96616d2d3..e41ed36f597 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -31,10 +31,10 @@
31;; Pacify byte-compiler. 31;; Pacify byte-compiler.
32(eval-when-compile 32(eval-when-compile
33 (require 'cl) 33 (require 'cl)
34 (require 'dired) 34 (require 'dired))
35 (defvar directory-sep-char) 35(defvar directory-sep-char)
36 (defvar tramp-gw-tunnel-method) 36(defvar tramp-gw-tunnel-method)
37 (defvar tramp-gw-socks-method)) 37(defvar tramp-gw-socks-method)
38 38
39(defcustom tramp-inline-compress-start-size 4096 39(defcustom tramp-inline-compress-start-size 4096
40 "The minimum size of compressing where inline transfer. 40 "The minimum size of compressing where inline transfer.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 29df2bb6577..cd7d17b130c 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -61,12 +61,12 @@
61 61
62;; Pacify byte-compiler. 62;; Pacify byte-compiler.
63(eval-when-compile 63(eval-when-compile
64 (require 'cl) 64 (require 'cl))
65 (defvar bkup-backup-directory-info) 65(defvar bkup-backup-directory-info)
66 (defvar directory-sep-char) 66(defvar directory-sep-char)
67 (defvar eshell-path-env) 67(defvar eshell-path-env)
68 (defvar file-notify-descriptors) 68(defvar file-notify-descriptors)
69 (defvar outline-regexp)) 69(defvar outline-regexp)
70 70
71;;; User Customizable Internal Variables: 71;;; User Customizable Internal Variables:
72 72