diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 01:02:43 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 01:02:43 +0000 |
commit | a59d908439acbea0e64013579edc6f0f0f50a895 (patch) | |
tree | 9a0fac209338ae28594983f584c6d0eaa5a6698b /lisp/enriched.el | |
parent | bd0e5b36b9bb2b3402252fb78c43505948b79fc1 (diff) | |
download | emacs-a59d908439acbea0e64013579edc6f0f0f50a895.tar.gz |
(enriched-next-annotation): Delete format call inside message.
Diffstat (limited to 'lisp/enriched.el')
-rw-r--r-- | lisp/enriched.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/enriched.el b/lisp/enriched.el index 2f2a3b57b8a..0cb96a1dcd5 100644 --- a/lisp/enriched.el +++ b/lisp/enriched.el @@ -429,8 +429,8 @@ Return value is \(begin end name positive-p), or nil if none was found." (delete-char 1) ;; A single < that does not start an annotation is an error, ;; which we note and then ignore. - (message (format "Warning: malformed annotation in file at %s" - (1- (point)))))) + (message "Warning: malformed annotation in file at %s" + (1- (point))))) (if (not (eobp)) (let* ((beg (match-beginning 0)) (end (match-end 0)) |