diff options
| author | Michael Albinus | 2013-10-17 21:39:22 +0200 |
|---|---|---|
| committer | Michael Albinus | 2013-10-17 21:39:22 +0200 |
| commit | 4c1f03efec55c103c97654af339f1dc2bb510b21 (patch) | |
| tree | 7c056ce00fc3bcf1304655e62b82d257be989250 /lisp/ChangeLog | |
| parent | 642eb8b6afa1c16b134d296ed90fd8fe59dc1d49 (diff) | |
| download | emacs-4c1f03efec55c103c97654af339f1dc2bb510b21.tar.gz emacs-4c1f03efec55c103c97654af339f1dc2bb510b21.zip | |
Code cleanup.
* net/tramp.el (tramp-debug-message): Do not check for connection
buffer.
(tramp-message): Use "vector" connection property.
* net/tramp.el (tramp-rfn-eshadow-update-overlay)
(tramp-equal-remote, tramp-eshell-directory-change)
* net/tramp-adb.el (tramp-adb-handle-copy-file)
(tramp-adb-handle-rename-file)
* net/tramp-cmds.el (tramp-list-remote-buffers)
(tramp-cleanup-connection, tramp-cleanup-this-connection)
* net/tramp-compat.el (tramp-compat-process-running-p)
* net/tramp-ftp.el (tramp-ftp-file-name-handler)
* net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
(tramp-gvfs-handle-rename-file)
* net/tramp-sh.el (tramp-sh-handle-set-file-times)
(tramp-set-file-uid-gid)
* net/tramp-smb.el (tramp-smb-handle-copy-file)
(tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
of `file-remote-p'.
* net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
* net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
(tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
(tramp-gw-open-network-stream): Suppress unrelated traces.
* net/tramp-adb.el (tramp-adb-maybe-open-connection)
* net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
* net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
* net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
connection property.
* net/tramp-cache.el (top): Suppress traces when reading
presistency file.
* net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
Refactor common code. Improve debug message.
(tramp-maybe-open-connection)
* net/tramp-smb.el (tramp-smb-call-winexe): Do not request
connection buffer too early.
* net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
from `tramp-smb-actions-with-acl'.
(tramp-smb-actions-set-acl): New defconst.
(tramp-smb-handle-copy-directory)
(tramp-smb-action-get-acl): New defun, renamed from
`tramp-smb-action-with-acl'.
(tramp-smb-action-set-acl): New defun.
(tramp-smb-handle-set-file-acl): Rewrite.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ba8fea8652e..a01d1d58765 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,56 @@ | |||
| 1 | 2013-10-17 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | Code cleanup. | ||
| 4 | |||
| 5 | * net/tramp.el (tramp-debug-message): Do not check for connection | ||
| 6 | buffer. | ||
| 7 | (tramp-message): Use "vector" connection property. | ||
| 8 | |||
| 9 | * net/tramp.el (tramp-rfn-eshadow-update-overlay) | ||
| 10 | (tramp-equal-remote, tramp-eshell-directory-change) | ||
| 11 | * net/tramp-adb.el (tramp-adb-handle-copy-file) | ||
| 12 | (tramp-adb-handle-rename-file) | ||
| 13 | * net/tramp-cmds.el (tramp-list-remote-buffers) | ||
| 14 | (tramp-cleanup-connection, tramp-cleanup-this-connection) | ||
| 15 | * net/tramp-compat.el (tramp-compat-process-running-p) | ||
| 16 | * net/tramp-ftp.el (tramp-ftp-file-name-handler) | ||
| 17 | * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file) | ||
| 18 | (tramp-gvfs-handle-rename-file) | ||
| 19 | * net/tramp-sh.el (tramp-sh-handle-set-file-times) | ||
| 20 | (tramp-set-file-uid-gid) | ||
| 21 | * net/tramp-smb.el (tramp-smb-handle-copy-file) | ||
| 22 | (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead | ||
| 23 | of `file-remote-p'. | ||
| 24 | |||
| 25 | * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p) | ||
| 26 | * net/tramp-gw.el (tramp-gw-gw-proc-sentinel) | ||
| 27 | (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter) | ||
| 28 | (tramp-gw-open-network-stream): Suppress unrelated traces. | ||
| 29 | |||
| 30 | * net/tramp-adb.el (tramp-adb-maybe-open-connection) | ||
| 31 | * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch) | ||
| 32 | * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band) | ||
| 33 | * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector" | ||
| 34 | connection property. | ||
| 35 | |||
| 36 | * net/tramp-cache.el (top): Suppress traces when reading | ||
| 37 | presistency file. | ||
| 38 | |||
| 39 | * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch): | ||
| 40 | Refactor common code. Improve debug message. | ||
| 41 | (tramp-maybe-open-connection) | ||
| 42 | * net/tramp-smb.el (tramp-smb-call-winexe): Do not request | ||
| 43 | connection buffer too early. | ||
| 44 | |||
| 45 | * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed | ||
| 46 | from `tramp-smb-actions-with-acl'. | ||
| 47 | (tramp-smb-actions-set-acl): New defconst. | ||
| 48 | (tramp-smb-handle-copy-directory) | ||
| 49 | (tramp-smb-action-get-acl): New defun, renamed from | ||
| 50 | `tramp-smb-action-with-acl'. | ||
| 51 | (tramp-smb-action-set-acl): New defun. | ||
| 52 | (tramp-smb-handle-set-file-acl): Rewrite. | ||
| 53 | |||
| 1 | 2013-10-17 Glenn Morris <rgm@gnu.org> | 54 | 2013-10-17 Glenn Morris <rgm@gnu.org> |
| 2 | 55 | ||
| 3 | * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635) | 56 | * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635) |