[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
tramp (2.1.7-pre); failing to copy filenames with spaces with rsync meth
From: |
Matt Swift |
Subject: |
tramp (2.1.7-pre); failing to copy filenames with spaces with rsync method |
Date: |
Thu, 01 Jun 2006 16:00:56 -0400 |
Enter your bug report in this message, including as much detail
as you possibly can about the problem, what you did to cause it
and what the local and remote machines are.
If you can give a simple set of instructions to make this bug
happen reliably, please include those. Thank you for helping
kill bugs in TRAMP.
Another useful thing to do is to put
(setq tramp-verbose 8)
in the ~/.emacs file and to repeat the bug. Then, include the
contents of the *tramp/foo* buffer and the *debug tramp/foo*
buffer in your bug report.
--bug report follows this line--
Tramp won't copy files with spaces using the rsync method. The
problem can be fixed by calling `tramp-shell-quote-argument' from
`tramp-make-copy-program-file-name' like this:
(defun tramp-make-copy-program-file-name (user host localname)
"Create a file name suitable to be passed to `rcp' and workalikes."
(let ((filename (tramp-shell-quote-argument localname)))
(if user
(format "address@hidden:%s" user host filename)
(format "%s:%s" host filename))))
Emacs : GNU Emacs 21.4.1 (i386-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2005-03-17 on trouble, modified by Debian
Package: tramp (2.1.7-pre)
current state:
==============
(setq
tramp-current-method "rsync"
tramp-current-user "mattswift"
tramp-current-host "mattswift.net"
tramp-auto-save-directory "~/.tramp-autosave"
tramp-default-method "rsync"
tramp-default-method-alist '((nil "%" "smb") ("" "\\`\\(anonymous\\|ftp\\)\\'"
"ftp") ("\\`ftp\\." "" "ftp")
("\\`localhost\\'" "\\`root\\'" "su"))
tramp-default-host "beth.swift.xxx"
tramp-default-proxies-alist nil
tramp-default-user nil
tramp-default-user-alist '(("smb" nil "") ("\\`su\\(do\\)?\\'" nil "root")
("\\`r\\(em\\)?\\(cp\\|sh\\)\\|telnet\\'" nil
"swift"))
tramp-rsh-end-of-line "\n"
tramp-default-password-end-of-line "\n"
tramp-remote-path '("~/bin" "/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin")
tramp-login-prompt-regexp ".*ogin\\( .*\\)?: *"
tramp-password-prompt-regexp "(base64-decode-string
\"Xi4qXChbcFBdYXNzd29yZFx8cGFzc3BocmFzZVwpLio6AD8gKg==\""
tramp-wrong-passwd-regexp "^.*\\(Connection
\\(?:\\(?:clo\\|refu\\)sed\\)\\|Host key verification failed\\.\\|Login
\\(?:[Ii]ncorrect\\)\\|N\\(?:ame or service not known\\|o supported
authentication methods left to try!\\)\\|Permission denied\\.\\|Sorry, try
again\\.\\|Tramp connection closed\\).*\\|^.*\\(Received signal [0-9]+\\).*"
tramp-yesno-prompt-regexp "\\(Are you sure you want to continue connecting
(yes/no)\\?\\)\\s-*"
tramp-yn-prompt-regexp "\\(Store key in cache\\? (y/n)\\)\\s-*"
tramp-terminal-prompt-regexp "\\(TERM = (.*)\\|Terminal type\\?
\\[.*\\]\\)\\s-*"
tramp-temp-name-prefix "tramp."
tramp-file-name-structure '("^/\\(\\([a-zA-Z_0-9-]+\\):\\)?\\(\\([^:/
]+\\)@\\)?\\([a-zA-Z0-9_.-]+\\(#[0-9]+\\)?\\)?:\\(.*$\\)" 2 4 5 7)
tramp-file-name-regexp "\\`/[^/:]+:"
tramp-methods '(("smb") ("ftp")
("rcp" (tramp-login-program "rsh") (tramp-copy-program "rcp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
("scp" (tramp-login-program "ssh") (tramp-copy-program "scp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
("scp1" (tramp-login-program "ssh") (tramp-copy-program "scp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-1" "-e"
"none")))
(tramp-copy-args ("-1")) (tramp-copy-keep-date-arg "-p")
(tramp-password-end-of-line nil))
("scp2" (tramp-login-program "ssh") (tramp-copy-program "scp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-2" "-e"
"none")))
(tramp-copy-args ("-2")) (tramp-copy-keep-date-arg "-p")
(tramp-password-end-of-line nil))
("scp1_old" (tramp-login-program "ssh1") (tramp-copy-program
"scp1")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
("scp2_old" (tramp-login-program "ssh2") (tramp-copy-program
"scp2")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
("sftp" (tramp-login-program "ssh") (tramp-copy-program
"sftp") (tramp-remote-sh
"/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
nil))
("rsync" (tramp-login-program "ssh") (tramp-copy-program
"rsync")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args ("-e" "ssh")) (tramp-copy-keep-date-arg
"-t")
(tramp-password-end-of-line nil))
("remcp" (tramp-login-program "remsh") (tramp-copy-program
"rcp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
("rsh" (tramp-login-program "rsh") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("ssh" (tramp-login-program "ssh") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
nil))
("ssh1" (tramp-login-program "ssh") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-1" "-e"
"none")))
(tramp-copy-args ("-1")) (tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("ssh2" (tramp-login-program "ssh") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-2" "-e"
"none")))
(tramp-copy-args ("-2")) (tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("ssh1_old" (tramp-login-program "ssh1") (tramp-copy-program
nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
nil))
("ssh2_old" (tramp-login-program "ssh2") (tramp-copy-program
nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
nil))
("remsh" (tramp-login-program "remsh") (tramp-copy-program
nil) (tramp-remote-sh
"/bin/sh")
(tramp-login-args (("%h") ("-l" "%u"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("telnet" (tramp-login-program "telnet") (tramp-copy-program
nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("su" (tramp-login-program "su") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("-") ("%u"))) (tramp-copy-args nil)
(tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("sudo" (tramp-login-program "sudo") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("-u" "%u") ("-s" "-p" "Password:")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
nil))
("scpx" (tramp-login-program "ssh") (tramp-copy-program "scp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none"
"-t" "-t"
"/bin/sh")))
(tramp-copy-args nil) (tramp-copy-keep-date-arg "-p")
(tramp-password-end-of-line nil))
("sshx" (tramp-login-program "ssh") (tramp-copy-program nil)
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-p" "%p") ("-e"
"none"
"-t" "-t"
"/bin/sh")))
(tramp-copy-args nil) (tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("krlogin" (tramp-login-program "krlogin") (tramp-copy-program
nil)
(tramp-remote-sh "/bin/sh") (tramp-login-args (("%h") ("-l"
"%u")
("-x")))
(tramp-copy-args nil) (tramp-copy-keep-date-arg nil)
(tramp-password-end-of-line nil))
("plink" (tramp-login-program "plink") (tramp-copy-program
nil) (tramp-remote-sh
"/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") ("-ssh")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
"xy"))
("plink1" (tramp-login-program "plink") (tramp-copy-program
nil) (tramp-remote-sh
"/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") ("-1"
"-ssh")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg nil) (tramp-password-end-of-line
"xy"))
("pscp" (tramp-login-program "plink") (tramp-copy-program
"pscp")
(tramp-remote-sh "/bin/sh")
(tramp-login-args (("%h") ("-l" "%u") ("-P" "%p") ("-ssh")))
(tramp-copy-args ("-scp"))
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
"xy"))
("psftp" (tramp-login-program "plink") (tramp-copy-program
"pscp")
(tramp-remote-sh "/bin/sh") (tramp-login-args ("%h") ("-l"
"%u")
("-P" "%p") ("-ssh"))
(tramp-copy-args ("-psftp")) (tramp-copy-keep-date-arg "-p")
(tramp-password-end-of-line "xy"))
("fcp" (tramp-login-program "fsh") (tramp-copy-program "fcp")
(tramp-remote-sh "/bin/sh -i")
(tramp-login-args (("%h") ("-l" "%u") ("sh" "-i")))
(tramp-copy-args nil)
(tramp-copy-keep-date-arg "-p") (tramp-password-end-of-line
nil))
)
tramp-end-of-output "///a2951f37af4a3a28cf0dfd4373e46d19"
tramp-local-coding-commands '((b64 base64-encode-region base64-decode-region)
(uu tramp-uuencode-region
uudecode-decode-region)
(pack
"perl -e 'binmode STDIN; binmode STDOUT; print
pack(q{u*}, join q{}, <>)'"
"perl -e 'binmode STDIN; binmode STDOUT; print
unpack(q{u*}, join q{}, <>)'")
)
tramp-remote-coding-commands '((b64 "mimencode -b" "mimencode -u -b") (b64
"mmencode -b" "mmencode -u -b")
(b64 "recode data..base64" "recode
base64..data")
(b64 tramp-perl-encode-with-module
tramp-perl-decode-with-module)
(b64 tramp-perl-encode tramp-perl-decode)
(uu "uuencode xxx" "uudecode -o /dev/stdout")
(uu "uuencode xxx" "uudecode -o -") (uu
"uuencode
xxx" "uudecode -p")
(uu "uuencode xxx" tramp-uudecode)
(pack
"perl -e 'binmode STDIN; binmode STDOUT; print
pack(q{u*}, join q{}, <>)'"
"perl -e 'binmode STDIN; binmode STDOUT; print
unpack(q{u*}, join q{}, <>)'")
)
tramp-actions-before-shell '((tramp-login-prompt-regexp tramp-action-login)
(tramp-password-prompt-regexp
tramp-action-password)
(tramp-wrong-passwd-regexp
tramp-action-permission-denied)
(shell-prompt-pattern tramp-action-succeed)
(tramp-shell-prompt-pattern tramp-action-succeed)
(tramp-yesno-prompt-regexp tramp-action-yesno)
(tramp-yn-prompt-regexp tramp-action-yn)
(tramp-terminal-prompt-regexp
tramp-action-terminal)
(tramp-process-alive-regexp
tramp-action-process-alive))
tramp-actions-copy-out-of-band '((tramp-password-prompt-regexp
tramp-action-password)
(tramp-wrong-passwd-regexp
tramp-action-permission-denied)
(tramp-process-alive-regexp
tramp-action-out-of-band))
tramp-terminal-type "dumb"
tramp-shell-prompt-pattern "(base64-decode-string
\"XlteIyQlPgpdKlsjJCU+XSAqXCgbXFtbMC05O10qW2EtekEtWl0gKlwpKg==\""
tramp-backup-directory-alist nil
tramp-cache-data '(([cl-struct-tramp-file-name "rsync" nil "mattswift.net"
nil] ("/usr/sbin" t)
("/usr/local/bin" t) ("remote-shell" "/bin/sh")
("file-exists" "test -e")
("ls" "/bin/ls") ("stat" "\\stat") ("id" "/usr/bin/id")
("gid-integer" 501)
("uname" "Linux 2.6.8-022stab067.1-enterprise")
("default-remote-path" nil))
([cl-struct-tramp-file-name "rsync" nil "birdwines.net"
nil]
("uname" "Linux 2.6.8-022stab067.1-enterprise")
("default-remote-path" nil)
("test" "test") ("~/bin" nil) ("/bin" t) ("/usr/bin" t)
("/usr/sbin" t)
("/usr/local/bin" t) ("remote-shell" "/bin/sh")
("file-exists" "test -e")
("ls" "/bin/ls") ("stat" "\\stat") ("id" "/usr/bin/id")
("gid-integer" 501))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" nil]
("uname" "Linux 2.6.8-022stab067.1-enterprise")
("default-remote-path" nil)
("test" "test") ("~/bin" nil) ("/bin" t) ("/usr/bin" t)
("/usr/sbin" t)
("/usr/local/bin" t) ("remote-shell" "/bin/sh")
("file-exists" "test -e")
("ls" "/bin/ls") ("stat" "\\stat") ("id" "/usr/bin/id")
("gid-integer" 503)
("perl" "\\perl") ("local-encoding" base64-encode-region)
("local-decoding" base64-decode-region)
("remote-encoding" "tramp_perl_encode_with_module")
("remote-decoding" "tramp_perl_decode_with_module")
("process-name" nil)
("process-buffer" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/home/mattswift/bin"]
("file-directory-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/bin"]
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/usr/bin"]
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/usr/sbin"]
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/usr/local/bin"]
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/home/mattswift"]
("file-exists-p" t)
("file-attributes-integer"
(t 5 502 503 (17524 35743) (17535 18002) (17535 18002)
4096 "drwxr-xr-x" nil 16581120
(-1 0))
)
)
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/home/mattswift/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html"]
("file-exists-p" t)
("file-attributes-integer"
(t 4 502 503 (17524 35756) (17535 14683) (17535 14683)
4096 "drwxr-xr-x" nil 16581124
(-1 0))
)
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS"]
("file-exists-p" t)
("file-attributes-integer"
(t 2 502 503 (17535 14677) (17535 14677) (17535 14683)
4096 "drwxrwxr-x" nil 19546757
(-1 0))
)
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/RCS/index.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/template.html"]
("file-exists-p" t)
("file-attributes-integer"
(nil 1 502 503 (17535 16004) (17535 16006) (17535 16004)
461 "-rw-rw-r--" nil 19549002
(-1 0))
)
)
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/home"]
("file-exists-p" t)
("file-attributes-integer"
(t 8 0 0 (17524 30935) (17524 45855) (17524 45855) 4096
"drwxr-xr-x" t 16305781 (-1 0)))
)
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/RCS/index.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/index.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/RCS/index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/CVS/Entries"]
("file-readable-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/SCCS/s.index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/s.index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net" "/home/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek"]
("file-exists-p" t)
("file-attributes-integer"
(t 2 502 503 (17535 15056) (17535 17848) (17535 17848)
4096 "drwxrwxr-x" nil 19549201
(-1 0))
)
)
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/.dired"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/index.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/RCS/template.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/template.html,v"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/RCS/template.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/SCCS/s.template.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/s.template.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys"]
("file-exists-p" t)
("file-attributes-integer"
(t 4 502 503 (17535 14693) (17535 16004) (17535 16004)
4096 "drwxrwxr-x" nil 19549198
(-1 0))
)
("file-directory-p" t))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/RCS/index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/CVS/Entries"]
("file-readable-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/SCCS/s.index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/s.index.html"]
("file-exists-p" nil))
([cl-struct-tramp-file-name "rsync" "mattswift"
"mattswift.net"
"/home/mattswift/public_html/MAS/surveys/wingaersheek/index.html"]
("file-exists-p" t)
("file-attributes-integer"
(nil 1 502 503 (17535 16014) (17535 16016) (17535 16014)
805 "-rw-rw-r--" nil 19549160
(-1 0))
)
)
)
shell-prompt-pattern "^[^#$%>\n]*[#$%>] *"
backup-by-copying nil
backup-by-copying-when-linked nil
backup-by-copying-when-mismatch nil
backup-by-copying-when-privileged-mismatch 200
password-cache t
password-cache-expiry 16
backup-directory-alist '(("." . "~/.trash"))
file-name-handler-alist
'(("\\.Z\\(~\\|\\.~[0-9]+~\\)?\\'\\|\\.bz2\\'\\|\\.tgz\\'\\|\\.g?z\\(~\\|\\.~[0-9]+~\\)?\\'"
. jka-compr-handler)
("\\`/[^/:]+:" . tramp-file-name-handler)
("\\.\\(GIF\\|JP\\(?:E?G\\)\\|P\\(?:BM\\|GM\\|NG\\|PM\\)\\|TIFF?\\|X\\(?:[BP]M\\)\\|gif\\|jp\\(?:e?g\\)\\|p\\(?:bm\\|gm\\|ng\\|pm\\)\\|tiff?\\|x\\(?:[bp]m\\)\\)\\'"
. image-file-handler)
("\\`/:" . file-name-non-special))
)
- tramp (2.1.7-pre); failing to copy filenames with spaces with rsync method,
Matt Swift <=