[Date Prev] [Date Index] [Date Next]
[Thread Prev] [Thread Index] [Thread Next]

[xyzzy:01504] Re: ふるって応募して



赤塚さん、こんにちは。須田です。

        Tue, 15 Dec 1998 17:17:04 +0900 の
        [xyzzy:01490] ふるって応募して
        に関するメールにお答えします。

「ファイルの検索結果をファイルに出力する」というのがありましたが、
これは「ファイラー」にということですね?

で、

(defun filesearch-to-filer (dir wild)
  (interactive "Dディレクトリ: \nlワイルド: ")
  (directory dir :wild wild :absolute t :recursive t))

とやったのですが、もう1つ、

(defun filesearch-to-buffer (dir wild)
  (interactive "Dディレクトリ: \nlワイルド: ")
  (with-output-to-temp-buffer ("*Help*")
    (dolist (file
	     (directory dir :wild wild :absolute t :recursive t))
      (format t "~A~%" file))))

というのもやってみたら、同じ結果でした。
これはなんで?

--------
須田誠也
EZU11330@xxxxxxxxxxx

Index Home