From: Karl Heuer Date: Mon, 29 Jan 1996 23:16:36 +0000 (+0000) Subject: (Info-extract-pointer): Fix error format string. X-Git-Tag: emacs-19.34~1436 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ce35dad9dd4809e514dfe01bab36a5de76ab1eff;p=emacs.git (Info-extract-pointer): Fix error format string. --- 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