diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-05-06 19:26:33 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-05-06 19:26:33 +0000 |
commit | af2c603886a5116df90f36a5f2ca4b953132c83a (patch) | |
tree | 023be932841e242ccaac056302db289275590c85 /lisp/net/webjump.el | |
parent | cf4fa77aff6c2fa99f7b22a9f2e3942a252c1189 (diff) | |
download | emacs-af2c603886a5116df90f36a5f2ca4b953132c83a.tar.gz |
(webjump): Replace `assoc-ignore-case' by `assoc-string'.
Diffstat (limited to 'lisp/net/webjump.el')
-rw-r--r-- | lisp/net/webjump.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/webjump.el b/lisp/net/webjump.el index 3f004b8864e..0fc47fafa85 100644 --- a/lisp/net/webjump.el +++ b/lisp/net/webjump.el @@ -274,9 +274,9 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke <nwv@acm.org>." (interactive) (let* ((completion-ignore-case t) - (item (assoc-ignore-case + (item (assoc-string (completing-read "WebJump to site: " webjump-sites nil t) - webjump-sites)) + webjump-sites t)) (name (car item)) (expr (cdr item))) (browse-url (webjump-url-fix |