EmacsCE+navi2chで快適2chアクセス

このエントリーをはてなブックマークに追加
120(not 1)
再び登場です。
あと、gzip 関連のは sage でいきましょう。
普通のネタに関しては age で。

>>110
zcat が無かったんですね。すいません。
coding なんとかってのはその文字コードだと書きこめないよって事です(多分)。
で、またまたお願いです。
以下の設定に変更するとどうなりますか?

(defun navi2ch-call-process-region (start end program
&optional delete destination display
&rest args)
(let ((tmpfile (expand-file-name (concat (make-temp-name "navi2ch"))
(getenv "TEMP")))
(str (buffer-substring start end))
(coding-system-for-read 'binary)
(coding-system-for-write 'binary))
(and delete (delete-region start end))
(with-temp-file tmpfile
(insert str))
(prog1
(apply 'call-process program tmpfile destination display args)
(delete-file tmpfile))))

(setq navi2ch-net-gunzip-program "gzip")
(setq navi2ch-net-gunzip-args "-f" "-d" "-c")

こんどこそうまくいくといいなぁ。