diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:16:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:16:36 +0000 |
commit | 6227357f2dbee6ca56b1d0680593aff0378466f5 (patch) | |
tree | 84e23a1af9159dda92661f84121a4ead20e0217e /lisp/info.el | |
parent | 55ed5fe34a032bff75fa553eae5d378e54de7a6a (diff) | |
download | emacs-6227357f2dbee6ca56b1d0680593aff0378466f5.tar.gz |
(Info-extract-pointer): Fix error format string.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 47f714b8e86..1ca54be65a8 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -792,7 +792,7 @@ In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself." (Info-following-node-name)) (if (eq errorname t) nil - (error (concat "Node has no " (capitalize (or errorname name)))))))) + (error "Node has no %s" (capitalize (or errorname name))))))) ;; Return the node name in the buffer following point. ;; ALLOWEDCHARS, if non-nil, goes within [...] to make a regexp |