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

[fix] w3m-expand-url



 斉藤と言います。はじめまして。
 w3m.el を大変便利に使わせていただいてます。ありがとうございます。

 w3m-expand-url 内の正規表現に typo と思しき箇所を見つけました。
 この修正で正しいのかわかりませんが、w3m.el 1.67 に対する
 diff をつけておきますのでご確認ください。

diff -c "w3m.el-1.67" "w3m.el"
*** w3m.el-1.67	Tue Mar  6 12:17:24 2001
--- w3m.el	Tue Mar  6 12:22:16 2001
***************
*** 1734,1740 ****
    "Convert URL to absolute, and canonicalize it."
    (save-match-data
      (if (not base) (setq base ""))
!     (if (string-match "^[^:/]+://[^/]*$" base)
  	(setq base (concat base "/")))
      (cond
       ;; URL is relative on BASE.
--- 1734,1740 ----
    "Convert URL to absolute, and canonicalize it."
    (save-match-data
      (if (not base) (setq base ""))
!     (if (string-match "^[^:/]+://.*[^/]$" base)
  	(setq base (concat base "/")))
      (cond
       ;; URL is relative on BASE.