Mercurial > emacs
changeset 23287:bf60e2b4da28
(find-function-search-for-symbol): Fix error messages.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 21 Sep 1998 16:35:21 +0000 |
parents | 3ccc2a1aa6fa |
children | 17dd9ecf84f1 |
files | lisp/emacs-lisp/find-func.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/find-func.el Mon Sep 21 16:33:18 1998 +0000 +++ b/lisp/emacs-lisp/find-func.el Mon Sep 21 16:35:21 1998 +0000 @@ -128,7 +128,7 @@ (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 @@ (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)))))))