diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:10:03 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:10:03 +0000 |
commit | d81c2c3c232915368d9e6b978c0b7b2dde4a6100 (patch) | |
tree | ce9e2cded8677471c16d34d45d160e635c4f0e7e /lisp/allout.el | |
parent | 4dd3b396429410d5033375cfb80f93560bf9d461 (diff) | |
download | emacs-d81c2c3c232915368d9e6b978c0b7b2dde4a6100.tar.gz |
(outline-process-exposed): Fix error format string.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 5 |
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))) |