aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2002-05-04 15:42:34 +0000
committerMarkus Rost2002-05-04 15:42:34 +0000
commit77186c628063f166d05d9b7878791def2dd20ffd (patch)
treea16e30247ce2f4df108ce9a6bf74b74b699cc17d
parent616d7a518622c9384ae1b4ca4e591c5ee37368f9 (diff)
downloademacs-77186c628063f166d05d9b7878791def2dd20ffd.tar.gz
emacs-77186c628063f166d05d9b7878791def2dd20ffd.zip
(find-function-search-for-symbol): Bind case-fold-search when searching.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/find-func.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 14402ae6641..09b50baafa9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-05-04 Markus Rost <rost@math.ohio-state.edu>
2
3 * emacs-lisp/find-func.el (find-function-search-for-symbol): Bind
4 case-fold-search when searching.
5
12002-05-04 Eli Zaretskii <eliz@is.elta.co.il> 62002-05-04 Eli Zaretskii <eliz@is.elta.co.il>
2 7
3 * apropos.el (apropos-print): Fix the reference to mouse-2. 8 * apropos.el (apropos-print): Fix the reference to mouse-2.
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index 99ad46c88b0..8850273b491 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -139,7 +139,8 @@ If VARIABLE-P is nil, `find-function-regexp' is used, otherwise
139 find-variable-regexp 139 find-variable-regexp
140 find-function-regexp) 140 find-function-regexp)
141 (regexp-quote (symbol-name symbol)))) 141 (regexp-quote (symbol-name symbol))))
142 (syn-table (syntax-table))) 142 (syn-table (syntax-table))
143 (case-fold-search))
143 (unwind-protect 144 (unwind-protect
144 (progn 145 (progn
145 (set-syntax-table emacs-lisp-mode-syntax-table) 146 (set-syntax-table emacs-lisp-mode-syntax-table)