Emacs part 21
■ このスレッドは過去ログ倉庫に格納されています
0246名無しさん@お腹いっぱい。
2007/02/13(火) 20:50:32の関数定義が空だという趣旨のエラーになってしまいます
このシンボルは広く使われているものなんでしょうか?環境は emacs 21.4.1 です
(defun my-navi2ch-osusume2ch-get-osusume2ch-subr (proc)
(let ((regexp
"^<a href=\"\\(.*\\)\" title=\"\\(.*\\)\">\\(.*\\)</a> \\(.*\\)<br>")
(file (navi2ch-make-temp-file "osusume2ch-"))
(coding-system-for-write 'binary)
osusume-lst)
(unwind-protect
(progn
(with-temp-file file
(navi2ch-set-buffer-multibyte nil)
(insert (navi2ch-net-get-content proc)))
(with-temp-buffer
(insert-file-contents file)
(setq osusume-lst
(my-navi2ch-osusume2ch-get-osusume2ch-thread-list))))
(ignore-errors (delete-file file)))
osusume-lst))
■ このスレッドは過去ログ倉庫に格納されています