install APEL for Mac.

Mikio Nakajima minakaji @ osaka.email.ne.jp
2000年 4月 12日 (水) 09:36:35 JST


At 11 Apr 2000 16:32:47 +0900,
Yo TANIGUCHI <taniguti @ crl.hitachi.co.jp> wrote:
 
> >僕の家の Mac だと built-in function の rename-file の動作がおかしく,
> >directory を越える file の rename がうまくできませんでした.
> >なので,確か skk 側の temporary directory を home に強引に指定して使え
> >るようになったと思います.
> >でもそういった使い方は個人的に「美しくない!」と思うので,とりあえず触
> >らなくなってしまいました.
> 
> rename-fileをcopy-fileとしてもうまく行くと思います.

  (defun rename-file (file newname &optional ok-if-already-exists)
  "Rename FILE as NEWNAME.  Both args strings.
If file has names other than FILE, it continues to have those names.
Signals a `file-already-exists' error if a file NEWNAME already exists
unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
A number as third arg means request confirmation if NEWNAME already exists.
This is what happens in interactive use with M-x."
  (copy-file file newname ok-if-already-exists 'keep-date)
  (delete-file file))

と .emacs に書いておくのはどうでしょうか?

-- 
中島幹夫 <minakaji @ osaka.email.ne.jp>
     <minakaji @ pdx.ne.jp> (急ぎのときはこちらへ)
http://www.asahi-net.or.jp/~gy2m-nkjm/




More information about the APEL-ja mailing list