help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: strange W3 behavior


From: Joe Bush
Subject: Re: strange W3 behavior
Date: Mon, 07 Feb 2005 23:25:10 GMT
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

Try adding the following to your .emacs file:

(eval-after-load "w3"
     '(progn
            (fset 'w3-fetch-orig (symbol-function 'w3-fetch))
            (defun w3-fetch (&optional url target)
            (interactive (list (w3-read-url-with-default))) 
            (if (eq major-mode 'gnus-article-mode)
                (browse-url url)
              (w3-fetch-orig url target)))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]