[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: cache
>> On Fri, 30 Jan 2004 16:40:33 +0900
>> 「土」== tsuchiya@pine.kuee.kyoto-u.ac.jp (TSUCHIYA Masatoshi) said as follows:
白井> 試してみたのですが、reload しても textbox の中身(値?)が変わらな
白井> いみたいですね。cache が原因じゃないみたい。
土> というわけで,reload 時にはヒストリに記憶されている値を無視した方
土> が良いのではないかと思うのですが,どうでしょうか?
以下の変更を行って,reload 時にはヒストリを記憶されている値を無視する
ようにしてみました.
--
土屋 雅稔 ( TSUCHIYA Masatoshi )
--- w3m.el 31 Jan 2004 06:02:54 -0000 1.993
+++ w3m.el 31 Jan 2004 12:51:57 -0000
@@ -6857,7 +6857,8 @@
(w3m-history-assoc url)))))
;; Set current forms using the history structure.
(when (setq w3m-current-forms
- (when (and (null post-data) ;; If post, always reload.
+ (when (and (not reload) ;; If reloading, ignore history.
+ (null post-data) ;; If post, ignore history.
(w3m-cache-available-p url))
;; Don't use `w3m-history-plist-get' here.
(plist-get (nthcdr 3 element) :forms)))