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

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

Re: help with function


From: Joost Kremers
Subject: Re: help with function
Date: 10 Nov 2007 00:12:29 GMT
User-agent: slrn/0.9.8.1 (Linux)

weber wrote:
> (defun search-word ()
>   (interactive)
>   (browse-url
>    (concat "http://foo.bar.foobar/index.php?search=";
>                  (read-from-minibuffer "Word: "))))

(defun search-word (word)
  (interactive "sWord: ")
  (browse-url (concat "http://foo.bar.foobar/index.php?search="; word)))

-- 
Joost Kremers                                      joostkremers@yahoo.com
Selbst in die Unterwelt dringt durch Spalten Licht
EN:SiS(9)


reply via email to

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