From 454f20659cc5740272c668830738dd4692cae694 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Mon, 31 Oct 2005 15:10:28 +0000 Subject: [PATCH] muse-publish: Use `apply' instead of passing list to `insert'. * lisp/muse-publish.el (muse-insert-markup): Use `apply' instead of passing a list to `insert'. Thanks to Mark Triggs for the suggestion. Hopefully this will fix a backtrace or two. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-262 --- ChangeLog | 15 +++++++++++++++ lisp/muse-publish.el | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2153fd1..62c6b3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,21 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-10-31 15:10:28 GMT Michael Olson patch-262 + + Summary: + muse-publish: Use `apply' instead of passing list to `insert'. + Revision: + muse--main--1.0--patch-262 + + * lisp/muse-publish.el (muse-insert-markup): Use `apply' instead of + passing a list to `insert'. Thanks to Mark Triggs for the suggestion. + Hopefully this will fix a backtrace or two. + + modified files: + ChangeLog lisp/muse-publish.el + + 2005-10-30 20:02:19 GMT Michael Olson patch-261 Summary: diff --git a/lisp/muse-publish.el b/lisp/muse-publish.el index 0cd9036..9fa5c41 100644 --- a/lisp/muse-publish.el +++ b/lisp/muse-publish.el @@ -406,7 +406,7 @@ If STYLE is not specified, use current style." (defsubst muse-insert-markup (&rest args) (let ((beg (point))) - (insert args) + (apply 'insert args) (muse-publish-mark-read-only beg (point)))) (defun muse-find-markup-tag (keyword tagname style) -- 2.11.4.GIT