diff options
| author | Markus Rost | 2002-05-04 15:42:34 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-05-04 15:42:34 +0000 |
| commit | 77186c628063f166d05d9b7878791def2dd20ffd (patch) | |
| tree | a16e30247ce2f4df108ce9a6bf74b74b699cc17d | |
| parent | 616d7a518622c9384ae1b4ca4e591c5ee37368f9 (diff) | |
| download | emacs-77186c628063f166d05d9b7878791def2dd20ffd.tar.gz emacs-77186c628063f166d05d9b7878791def2dd20ffd.zip | |
(find-function-search-for-symbol): Bind case-fold-search when searching.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 3 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-05-04 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2002-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) |