diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2010-11-13 11:42:32 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2010-11-13 11:42:32 +0100 |
commit | 6e060cee8186d9fe5ad5f8a783d45f80f9b1bbe3 (patch) | |
tree | 3843440633027fd8d45e897316b68f2a5e9e550a /lisp/net/tramp-cmds.el | |
parent | ea4f775071971a1461b81195af102291bc1ebc10 (diff) | |
download | emacs-6e060cee8186d9fe5ad5f8a783d45f80f9b1bbe3.tar.gz emacs-6e060cee8186d9fe5ad5f8a783d45f80f9b1bbe3.tar.bz2 emacs-6e060cee8186d9fe5ad5f8a783d45f80f9b1bbe3.zip |
* net/tramp-compat.el (tramp-compat-line-beginning-position)
(tramp-compat-line-end-position): Remove them.
* net/tramp.el (tramp-parse-rhosts-group)
(tramp-parse-shosts-group, tramp-parse-sconfig-group)
(tramp-parse-hosts-group, tramp-parse-passwd-group)
(tramp-parse-netrc-group, tramp-parse-putty-group)
* net/tramp-cmds.el (tramp-append-tramp-buffers)
* net/tramp-sh.el (tramp-do-file-attributes-with-ls)
(tramp-sh-handle-file-selinux-context)
(tramp-sh-handle-file-name-all-completions)
(tramp-sh-handle-insert-directory)
(tramp-sh-handle-expand-file-name, tramp-find-executable)
(tramp-wait-for-output, tramp-send-command-and-read)
* net/tramp-smb.el (tramp-smb-read-file-entry)
(tramp-smb-get-cifs-capabilities): Use `point-at-eol'.
* net/tramp-sh.el (tramp-sh-handle-insert-directory) Use
`point-at-bol'.
(tramp-remote-coding-commands): Add an alternative using "base64
-d -i". This is needed for older base64 versions from GNU
coreutils. Reported by Klaus Reichl
<Klaus.Reichl@thalesgroup.com>.
Diffstat (limited to 'lisp/net/tramp-cmds.el')
-rw-r--r-- | lisp/net/tramp-cmds.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el index e6e1bc671e7..f4290f6faf3 100644 --- a/lisp/net/tramp-cmds.el +++ b/lisp/net/tramp-cmds.el @@ -298,8 +298,7 @@ buffer in your bug report. (setq buffer-read-only nil) (goto-char (point-min)) (while (not (eobp)) - (if (re-search-forward - tramp-buf-regexp (tramp-compat-line-end-position) t) + (if (re-search-forward tramp-buf-regexp (point-at-eol) t) (forward-line 1) (forward-line 0) (let ((start (point))) @@ -372,5 +371,4 @@ please ensure that the buffers are attached to your email.\n\n") ;; ordinary variable that gets its initial value from ;; tramp-default-user-alist and then is added to. (Pete Forman) -;; arch-tag: 190d4c33-76bb-4e99-8b6f-71741f23d98c ;;; tramp-cmds.el ends here |