diff options
| author | Kai Großjohann | 2004-05-07 21:20:10 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2004-05-07 21:20:10 +0000 |
| commit | 38c65fca8d8b18246f0fe601a25cb0138bd89e0b (patch) | |
| tree | 5674961ceead8a0e1eb8a07a98fb5dfba729e5b5 /lisp/ChangeLog | |
| parent | 9bcabb45f768dd93913642239b13bda290e5942d (diff) | |
| download | emacs-38c65fca8d8b18246f0fe601a25cb0138bd89e0b.tar.gz emacs-38c65fca8d8b18246f0fe601a25cb0138bd89e0b.zip | |
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Version 2.0.40 of Tramp released.
* net/tramp.el (tramp-completion-mode, tramp-md5-function): Use
symbol-function to invoke functions only known on some Emacs
flavors. This avoids byte-compiler warnings. Reported by Kevin
Scaldeferri <kevin@scaldeferri.com>.
(tramp-do-copy-or-rename-file-via-buffer): Renamed from
tramp-do-copy-or-rename-via-buffer (without `file'), to make it
consistent with the other tramp-do-* functions.
(tramp-do-copy-or-rename-file): Calls adjusted.
(tramp-process-initial-commands): Avoid liveness check on shell --
we know that it must be alive since we're opening a connection at
this moment.
(tramp-last-cmd): New internal variable.
(tramp-process-echoes): New tunable.
(tramp-send-command): Set tramp-last-cmd.
(tramp-wait-for-output): Delete echo, if applicable.
(tramp-read-passwd): Construct the key for the password cache in a
way that works for multi methods, too.
(tramp-bug): Add backup-directory-alist and
bkup-backup-directory-info to bug reports, with Tramp
counterparts.
2004-05-01 Michael Albinus <michael.albinus@gmx.de>
* net/tramp*.el: Suppress byte-compiler warnings where possible.
* net/tramp.el (tramp-out-of-band-prompt-regexp)
(tramp-actions-copy-out-of-band): New defcustoms.
(tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
used instead of a synchronous one. Allows password entering.
(tramp-action-out-of-band): New defun.
(tramp-open-connection-rsh, tramp-method-out-of-band-p): Remove
restriction with password from doc string.
(tramp-bug): Add variables `tramp-terminal-prompt-regexp',
`tramp-out-of-band-prompt-regexp',
`tramp-actions-copy-out-of-band', `password-cache' and
`password-cache-expiry'.
(toplevel): Remove todo item wrt ssh-agent. Obsolete due to
password caching.
(tramp-touch): FILE can be a local file, too.
(TODO): Remove items done.
(tramp-handle-insert-directory): Properly quote file name also if
not full-directory-p. Handle wildcard case. Reported by Andreas
Schwab <schwab@suse.de>.
(tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
new file.
(tramp-handle-file-local-copy, tramp-handle-write-region): The
permissions of the temporary file are set if filename exists.
Reported by Ted Stern <stern@cray.com>.
(tramp-backup-directory-alist)
(tramp-bkup-backup-directory-info): New defcustoms.
(tramp-file-name-handler-alist): Add entry for
`find-backup-file-name'.
(tramp-handle-find-backup-file-name): New function. Implements
Tramp's find-backup-file-name.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
for `find-backup-file-name'.
* net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bc1b996c817..dbf9f72d804 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,68 @@ | |||
| 1 | 2004-05-07 Kai Grossjohann <kai@emptydomain.de> | ||
| 2 | |||
| 3 | Version 2.0.40 of Tramp released. | ||
| 4 | |||
| 5 | * net/tramp.el (tramp-completion-mode, tramp-md5-function): Use | ||
| 6 | symbol-function to invoke functions only known on some Emacs | ||
| 7 | flavors. This avoids byte-compiler warnings. Reported by Kevin | ||
| 8 | Scaldeferri <kevin@scaldeferri.com>. | ||
| 9 | (tramp-do-copy-or-rename-file-via-buffer): Renamed from | ||
| 10 | tramp-do-copy-or-rename-via-buffer (without `file'), to make it | ||
| 11 | consistent with the other tramp-do-* functions. | ||
| 12 | (tramp-do-copy-or-rename-file): Calls adjusted. | ||
| 13 | (tramp-process-initial-commands): Avoid liveness check on shell -- | ||
| 14 | we know that it must be alive since we're opening a connection at | ||
| 15 | this moment. | ||
| 16 | (tramp-last-cmd): New internal variable. | ||
| 17 | (tramp-process-echoes): New tunable. | ||
| 18 | (tramp-send-command): Set tramp-last-cmd. | ||
| 19 | (tramp-wait-for-output): Delete echo, if applicable. | ||
| 20 | (tramp-read-passwd): Construct the key for the password cache in a | ||
| 21 | way that works for multi methods, too. | ||
| 22 | (tramp-bug): Add backup-directory-alist and | ||
| 23 | bkup-backup-directory-info to bug reports, with Tramp | ||
| 24 | counterparts. | ||
| 25 | |||
| 26 | 2004-05-01 Michael Albinus <michael.albinus@gmx.de> | ||
| 27 | |||
| 28 | * net/tramp*.el: Suppress byte-compiler warnings where possible. | ||
| 29 | |||
| 30 | * net/tramp.el (tramp-out-of-band-prompt-regexp) | ||
| 31 | (tramp-actions-copy-out-of-band): New defcustoms. | ||
| 32 | (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process | ||
| 33 | used instead of a synchronous one. Allows password entering. | ||
| 34 | (tramp-action-out-of-band): New defun. | ||
| 35 | (tramp-open-connection-rsh, tramp-method-out-of-band-p): Remove | ||
| 36 | restriction with password from doc string. | ||
| 37 | (tramp-bug): Add variables `tramp-terminal-prompt-regexp', | ||
| 38 | `tramp-out-of-band-prompt-regexp', | ||
| 39 | `tramp-actions-copy-out-of-band', `password-cache' and | ||
| 40 | `password-cache-expiry'. | ||
| 41 | (toplevel): Remove todo item wrt ssh-agent. Obsolete due to | ||
| 42 | password caching. | ||
| 43 | (tramp-touch): FILE can be a local file, too. | ||
| 44 | (TODO): Remove items done. | ||
| 45 | (tramp-handle-insert-directory): Properly quote file name also if | ||
| 46 | not full-directory-p. Handle wildcard case. Reported by Andreas | ||
| 47 | Schwab <schwab@suse.de>. | ||
| 48 | (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the | ||
| 49 | new file. | ||
| 50 | (tramp-handle-file-local-copy, tramp-handle-write-region): The | ||
| 51 | permissions of the temporary file are set if filename exists. | ||
| 52 | Reported by Ted Stern <stern@cray.com>. | ||
| 53 | (tramp-backup-directory-alist) | ||
| 54 | (tramp-bkup-backup-directory-info): New defcustoms. | ||
| 55 | (tramp-file-name-handler-alist): Add entry for | ||
| 56 | `find-backup-file-name'. | ||
| 57 | (tramp-handle-find-backup-file-name): New function. Implements | ||
| 58 | Tramp's find-backup-file-name. | ||
| 59 | |||
| 60 | * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry | ||
| 61 | for `find-backup-file-name'. | ||
| 62 | |||
| 63 | * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo | ||
| 64 | ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>. | ||
| 65 | |||
| 1 | 2004-05-07 Lars Hansen <larsh@math.ku.dk> | 66 | 2004-05-07 Lars Hansen <larsh@math.ku.dk> |
| 2 | 67 | ||
| 3 | * desktop.el (desktop-buffer-mode-handlers): Fix docstring. | 68 | * desktop.el (desktop-buffer-mode-handlers): Fix docstring. |