summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-29 23:10:03 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-29 23:10:03 +0000
commitb2673b8f3f8ec721abf190faee2ae47b80ca8bd5 (patch)
tree8d9197b5fcfcbd24acae734e4f5c62e015b413d0
parent2eca491738d3a5413c1a8b61e78b8bbd28a9414c (diff)
downloademacs-b2673b8f3f8ec721abf190faee2ae47b80ca8bd5.tar.gz
(outline-process-exposed): Fix error format string.
-rw-r--r--lisp/allout.el5
1 files changed, 2 insertions, 3 deletions
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)))