diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-21 16:35:21 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-21 16:35:21 +0000 |
commit | 917eabae09e6e79a76fe7e7aca58643e5cb05e62 (patch) | |
tree | 0341b138e59fde2d3b11d6608403a3f4f0f4ee8f /lisp/emacs-lisp/find-func.el | |
parent | c2509060c71edf5ba17d10e2360b03b3b5ecb325 (diff) | |
download | emacs-917eabae09e6e79a76fe7e7aca58643e5cb05e62.tar.gz |
(find-function-search-for-symbol): Fix error messages.
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 4adf67346a7..6b295cfcc91 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -128,7 +128,7 @@ If VARIABLE-P is nil, `find-function-regexp' is used, otherwise (locate-library (concat library ".gz") t path))))))) (if (not filename) - (error "The library \"%s\" is not in the path." library)) + (error "The library `%s' is not in the path" library)) (with-current-buffer (find-file-noselect filename) (save-match-data (let ((regexp (format (if variable-p @@ -144,7 +144,7 @@ If VARIABLE-P is nil, `find-function-regexp' is used, otherwise (progn (beginning-of-line) (cons (current-buffer) (point))) - (error "Cannot find definition of `%s' in library \"%s\"" + (error "Cannot find definition of `%s' in library `%s'" symbol library))) (set-syntax-table syn-table))))))) |