15/09/04 18:18:27.10 TxZyxqGk0.net
>>161 ありがとう
ズバリ shell-quote-argument が求めていた関数でした。
(defun cygpath (option path)
(let ((command (mapconcat 'identity (list "D:/msys64/usr/bin/cygpath"
option
(shell-quote-argument path)) "\s")))
(substring (shell-command-to-string command) 0 -1)))
NTemacs と cygwin を連携させる場合に
win ←→ unix の path の変換はみんなどうやっているのだろう?