From 5e6e69169e03a50d43ae6190afd0a0f7ff88b266 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 5 Apr 1998 03:19:59 +0000 Subject: [PATCH] (webjump): Use assoc-ignore-case for locating the proper URL. --- lisp/webjump.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/webjump.el b/lisp/webjump.el index 3273a5bbecc..42d0a4d4f2d 100644 --- a/lisp/webjump.el +++ b/lisp/webjump.el @@ -274,8 +274,9 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ." (interactive) (let* ((completion-ignore-case t) - (item (assoc (completing-read "WebJump to site: " webjump-sites nil t) - webjump-sites)) + (item (assoc-ignore-case + (completing-read "WebJump to site: " webjump-sites nil t) + webjump-sites)) (name (car item)) (expr (cdr item))) (funcall browse-url-browser-function -- 2.39.2