diff options
| author | Michael Albinus | 2019-06-28 16:32:12 +0200 |
|---|---|---|
| committer | Michael Albinus | 2019-06-28 16:32:12 +0200 |
| commit | aae5bf4438712c9fe761c5e4b5a871192852cd97 (patch) | |
| tree | ec3db42160422f29bed125227e3d9556bf949337 /doc | |
| parent | c534a4a3368cb396ccb53677f3153b526724d867 (diff) | |
| download | emacs-aae5bf4438712c9fe761c5e4b5a871192852cd97.tar.gz emacs-aae5bf4438712c9fe761c5e4b5a871192852cd97.zip | |
Tramp requires Emacs 24.4
* doc/misc/tramp.texi (Frequently Asked Questions):
Use `with-eval-after-load'. in example.
* doc/misc/trampver.texi: Set variable emacsver.
* lisp/net/tramp.el (tramp-send-string, tramp-call-process)
(tramp-call-process-region, tramp-process-lines):
* lisp/net/tramp-adb.el (tramp-adb-handle-file-truename)
(tramp-adb-sh-fix-ls-output, tramp-adb-maybe-open-connection):
* lisp/net/tramp-gvfs.el (tramp-gvfs-get-directory-attributes)
(tramp-gvfs-handle-file-notify-add-watch)
* lisp/net/tramp-sh.el (tramp-sh-handle-file-truename)
(tramp-do-copy-or-rename-file-out-of-band)
(tramp-sh-handle-file-notify-add-watch, tramp-find-executable)
(tramp-set-remote-path)
(tramp-open-connection-setup-interactive-shell)
(tramp-maybe-open-connection, tramp-send-command):
* lisp/net/tramp-smb.el (tramp-smb-handle-copy-directory)
(tramp-smb-handle-file-acl, tramp-smb-handle-process-file)
(tramp-smb-handle-set-file-acl)
(tramp-smb-handle-start-file-process)
(tramp-smb-maybe-open-connection):
* lisp/net/tramp-sudoedit.el (tramp-sudoedit-handle-set-file-acl):
(tramp-sudoedit-send-command): Use `string-join' and `string-empty-p'.
* lisp/net/tramp-adb.el:
* lisp/net/tramp-archive.el:
* lisp/net/tramp-integration.el:
* lisp/net/tramp-ftp.el: Use `with-eval-after-load'.
* lisp/net/tramp-cmds.el (tramp-cleanup-connection)
(tramp-cleanup-all-connections): Cancel timer.
* lisp/net/tramp-compat.el (subr-x): Require.
(default-toplevel-value): Don't make it a defalias.
* lisp/net/tramp-gvfs.el: Use `dbus-event-error-functions'. Do
not special handle `split-string'.
* lisp/net/tramp.el: Require Emacs 24.4.
(tramp-password-prompt-regexp): Use `password-word-equivalents'.
(tramp-user-error): Use `user-error'.
(tramp-replace-environment-variables): Use `substitute-env-vars'.
(tramp-wait-for-regexp): Rearrange `with-current-buffer' call.
(tramp-get-local-gid): Use `group-gid'.
* lisp/net/trampver.el: Check for Emacs 24.4.
* test/lisp/net/tramp-tests.el (tramp-test02-file-name-dissect)
(tramp-test02-file-name-dissect-simplified)
(tramp-test02-file-name-dissect-separate)
(tramp-test03-file-name-host-rules)
(tramp-test03-file-name-method-rules): Don't check for `user-error'.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/tramp.texi | 6 | ||||
| -rw-r--r-- | doc/misc/trampver.texi | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index dc01f119e7a..df8ae6f7f40 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -4204,10 +4204,8 @@ directory to the cache: | |||
| 4204 | 4204 | ||
| 4205 | @lisp | 4205 | @lisp |
| 4206 | @group | 4206 | @group |
| 4207 | @c `with-eval-after-load' has been introduced with Emacs 24.4. Shall | 4207 | (with-eval-after-load 'filecache |
| 4208 | @c be used when appropriate. | 4208 | (file-cache-add-directory |
| 4209 | (eval-after-load "filecache" | ||
| 4210 | '(file-cache-add-directory | ||
| 4211 | "@trampfn{ssh,news@@news.my.domain,/opt/news/etc/}")) | 4209 | "@trampfn{ssh,news@@news.my.domain,/opt/news/etc/}")) |
| 4212 | @end group | 4210 | @end group |
| 4213 | @end lisp | 4211 | @end lisp |
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi index 5b1408a4974..03f9e01ce21 100644 --- a/doc/misc/trampver.texi +++ b/doc/misc/trampver.texi | |||
| @@ -5,10 +5,12 @@ | |||
| 5 | @c Copyright (C) 2003-2019 Free Software Foundation, Inc. | 5 | @c Copyright (C) 2003-2019 Free Software Foundation, Inc. |
| 6 | @c See file doclicense.texi for copying conditions. | 6 | @c See file doclicense.texi for copying conditions. |
| 7 | 7 | ||
| 8 | @c In the Tramp GIT, the version number is auto-frobbed from tramp.el, | 8 | @c In the Tramp GIT, the version numbers are auto-frobbed from |
| 9 | @c and the bug report address is auto-frobbed from configure.ac. | 9 | @c tramp.el, and the bug report address is auto-frobbed from |
| 10 | @c configure.ac. | ||
| 10 | @set trampver 2.4.2-pre | 11 | @set trampver 2.4.2-pre |
| 11 | @set tramp-bug-report-address tramp-devel@@gnu.org | 12 | @set tramp-bug-report-address tramp-devel@@gnu.org |
| 13 | @set emacsver 24.4 | ||
| 12 | 14 | ||
| 13 | @c Other flags from configuration. | 15 | @c Other flags from configuration. |
| 14 | @set instprefix /usr/local | 16 | @set instprefix /usr/local |