From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com>
To: help-gnu-emacs@gnu.org
Cc: help-emacs-windows <help-emacs-windows@gnu.org>
Subject: Re: tramp-touch on NTemacs
Date: Fri, 09 Mar 2007 23:46:39 +0100 [thread overview]
Message-ID: <45F1E3CF.2080500@gmail.com> (raw)
In-Reply-To: <1173478088.548774.192440@c51g2000cwc.googlegroups.com>
Have you tried the touch.exe from gnuwin32? I do not know if it works,
but it is more recent and also currently maintained. I would be
interested in hearing the result.
Peter wrote:
> Hi.
> I'm running GNU Emacs 22.0.50.2 (i386-mingw-nt5.1.2600) under Windows
> XP. I need to transfer files back and forth with a Linux machine at
> work that does not allow ftp access. The pre-installed tramp package
> seems to work just fine except when I try to copy a file from the
> Linux machine back to my local XP machine. The file is copied, but I
> get an error message saying "tramp-touch: touch failed". I am using
> the default method (plink?); there is nothing in my .emacs file to
> modify this. When I first experimented with tramp, it complained that
> there wasn't a touch program, so I tried several versions that I
> downloaded from the web, finally settling on the one from the UnxUtils
> package available on Sourceforge.net. It seems to have the same
> command-line options as the Unix versions, including -t.
>
> I've looked at the tramp.el file for this error message. It is
> embedded in some code that looks like the following excerpt:
>
> (defun tramp-touch (file time)
> "Set the last-modified timestamp of the given file.
> TIME is an Emacs internal time value as returned by `current-time'."
> (let ((touch-time (format-time-string "%Y%m%d%H%M.%S" time)))
> (if (tramp-tramp-file-p file)
> (with-parsed-tramp-file-name file nil
> (let ((buf (tramp-get-buffer multi-method method user host)))
> (unless (zerop (tramp-send-command-and-check
> multi-method method user host
> (format "touch -t %s %s"
> touch-time
> localname)))
> (pop-to-buffer buf)
> (error "tramp-touch: touch failed, see buffer `%s' for details"
> buf))))
> ;; It's a local file
> (with-temp-buffer
> (unless (zerop (call-process
> "touch" nil (current-buffer) nil "-t" touch-time file))
> (pop-to-buffer (current-buffer))
> (error "tramp-touch: touch failed"))))))
>
> I'm assuming that the error message is generated by the final line of
> code above. However, I don't know any List and don't know how to
> debug this further. I can, however, follow directions and would
> appreciate suggestions on how to proceed. This error occurs with
> whatever version of touch.exe I install on my system.
>
> Thanks,
> Peter
>
> _______________________________________________
> help-gnu-emacs mailing list
> help-gnu-emacs@gnu.org
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
>
next prev parent reply other threads:[~2007-03-09 22:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-09 22:08 tramp-touch on NTemacs Peter
2007-03-09 22:46 ` Lennart Borgman (gmail) [this message]
[not found] ` <mailman.741.1173480436.7795.help-gnu-emacs@gnu.org>
2007-03-10 0:28 ` Peter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=45F1E3CF.2080500@gmail.com \
--to=lennart.borgman@gmail.com \
--cc=help-emacs-windows@gnu.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.