From ce35dad9dd4809e514dfe01bab36a5de76ab1eff Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 29 Jan 1996 23:16:36 +0000 Subject: [PATCH] (Info-extract-pointer): Fix error format string. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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-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 -- 2.39.2