1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-09 15:50:21 +00:00

* 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'.
This commit is contained in:
Michael Albinus 2013-08-17 12:20:15 +02:00
parent d311017740
commit f95527c8b2
8 changed files with 33 additions and 24 deletions

View File

@ -1,3 +1,14 @@
2013-08-17 Michael Albinus <michael.albinus@gmx.de>
* 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'.
2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
* net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs

View File

@ -37,9 +37,8 @@
(require 'time-date)
;; Pacify byte-compiler.
(eval-when-compile
(defvar directory-sep-char)
(defvar dired-move-to-filename-regexp))
(defvar directory-sep-char)
(defvar dired-move-to-filename-regexp)
(defcustom tramp-adb-program "adb"
"Name of the Android Debug Bridge program."

View File

@ -31,9 +31,8 @@
(require 'tramp)
;; Pacify byte-compiler.
(eval-when-compile
(defvar reporter-eval-buffer)
(defvar reporter-prompt-for-summary-p))
(defvar reporter-eval-buffer)
(defvar reporter-prompt-for-summary-p)
(defun tramp-list-tramp-buffers ()
"Return a list of all Tramp connection buffers."

View File

@ -33,10 +33,10 @@
;; Pacify byte-compiler.
(eval-when-compile
(require 'cl)
(require 'custom)
(defvar ange-ftp-ftp-name-arg)
(defvar ange-ftp-ftp-name-res)
(defvar ange-ftp-name-format))
(require 'custom))
(defvar ange-ftp-ftp-name-arg)
(defvar ange-ftp-ftp-name-res)
(defvar ange-ftp-name-format)
;; Disable Ange-FTP from file-name-handler-alist.
;; To handle EFS, the following functions need to be dealt with:

View File

@ -107,8 +107,8 @@
;; Pacify byte-compiler.
(eval-when-compile
(require 'cl)
(require 'custom)
(defvar ls-lisp-use-insert-directory-program))
(require 'custom))
(defvar ls-lisp-use-insert-directory-program)
;;;###tramp-autoload
(defcustom tramp-gvfs-methods '("dav" "davs" "obex" "synce")

View File

@ -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.

View File

@ -31,10 +31,10 @@
;; Pacify byte-compiler.
(eval-when-compile
(require 'cl)
(require 'dired)
(defvar directory-sep-char)
(defvar tramp-gw-tunnel-method)
(defvar tramp-gw-socks-method))
(require 'dired))
(defvar directory-sep-char)
(defvar tramp-gw-tunnel-method)
(defvar tramp-gw-socks-method)
(defcustom tramp-inline-compress-start-size 4096
"The minimum size of compressing where inline transfer.

View File

@ -61,12 +61,12 @@
;; Pacify byte-compiler.
(eval-when-compile
(require 'cl)
(defvar bkup-backup-directory-info)
(defvar directory-sep-char)
(defvar eshell-path-env)
(defvar file-notify-descriptors)
(defvar outline-regexp))
(require 'cl))
(defvar bkup-backup-directory-info)
(defvar directory-sep-char)
(defvar eshell-path-env)
(defvar file-notify-descriptors)
(defvar outline-regexp)
;;; User Customizable Internal Variables: