From: Karl Heuer Date: Mon, 29 Jan 1996 23:10:03 +0000 (+0000) Subject: (outline-process-exposed): Fix error format string. X-Git-Tag: emacs-19.34~1444 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d81c2c3c232915368d9e6b978c0b7b2dde4a6100;p=emacs.git (outline-process-exposed): Fix error format string. --- diff --git a/lisp/allout.el b/lisp/allout.el index 8302dc5b207..db41d4af169 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -3265,9 +3265,8 @@ representations of topic entries produced by outline-listify-exposed." ;; Specified but not a buffer - get it: (let ((got (get-buffer frombuf))) (if (not got) - (error (concat "outline-process-exposed: source buffer " - frombuf - " not found.")) + (error "outline-process-exposed: source buffer %s not found." + frombuf) (setq frombuf got)))) ;; not specified - default it: (setq frombuf (current-buffer)))