unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: "Peter" <petersamsimon2@hotmail.com>
To: help-gnu-emacs@gnu.org
Subject: tramp-touch on NTemacs
Date: 9 Mar 2007 14:08:08 -0800	[thread overview]
Message-ID: <1173478088.548774.192440@c51g2000cwc.googlegroups.com> (raw)

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

             reply	other threads:[~2007-03-09 22:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-09 22:08 Peter [this message]
2007-03-09 22:46 ` tramp-touch on NTemacs Lennart Borgman (gmail)
     [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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1173478088.548774.192440@c51g2000cwc.googlegroups.com \
    --to=petersamsimon2@hotmail.com \
    --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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).