summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMarkus Rost <rost@math.uni-bielefeld.de>2002-05-04 15:42:34 +0000
committerMarkus Rost <rost@math.uni-bielefeld.de>2002-05-04 15:42:34 +0000
commit77186c628063f166d05d9b7878791def2dd20ffd (patch)
treea16e30247ce2f4df108ce9a6bf74b74b699cc17d /lisp/emacs-lisp
parent616d7a518622c9384ae1b4ca4e591c5ee37368f9 (diff)
downloademacs-77186c628063f166d05d9b7878791def2dd20ffd.tar.gz
emacs-77186c628063f166d05d9b7878791def2dd20ffd.tar.bz2
emacs-77186c628063f166d05d9b7878791def2dd20ffd.zip
(find-function-search-for-symbol): Bind case-fold-search when searching.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/find-func.el3
1 files changed, 2 insertions, 1 deletions
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
find-variable-regexp
find-function-regexp)
(regexp-quote (symbol-name symbol))))
- (syn-table (syntax-table)))
+ (syn-table (syntax-table))
+ (case-fold-search))
(unwind-protect
(progn
(set-syntax-table emacs-lisp-mode-syntax-table)