From 293ffa2a5ec1ea7213239f68445c5360990c756d Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Tue, 26 Jul 2005 03:47:53 +0000 Subject: [PATCH] muse-xml: definition lists, muse-docbook: center. * Makefile (%.info, %.html): Use general argument in rule. (distclean): Add another cruft file. * experimental/muse-xml.el (muse-xml-markup-strings): Use for definition lists. * lisp/muse-docbook.el (muse-docbook-markup-strings): Replace
with , since it's the closest thing I could find. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-182 --- ChangeLog | 21 +++++++++++++++++++++ Makefile | 6 +++--- experimental/muse-xml.el | 6 +++--- lisp/muse-docbook.el | 4 ++-- 4 files changed, 29 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index cc287be..091deff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,27 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-07-26 03:47:53 GMT Michael Olson patch-182 + + Summary: + muse-xml: definition lists, muse-docbook: center. + Revision: + muse--main--1.0--patch-182 + + * Makefile (%.info, %.html): Use general argument in rule. + (distclean): Add another cruft file. + + * experimental/muse-xml.el (muse-xml-markup-strings): Use for definition lists. + + * lisp/muse-docbook.el (muse-docbook-markup-strings): Replace
+ with , since it's the closest thing I could find. + + modified files: + ChangeLog Makefile experimental/muse-xml.el + lisp/muse-docbook.el + + 2005-07-24 22:46:22 GMT Michael Olson patch-181 Summary: diff --git a/Makefile b/Makefile index d0bd2ca..9492037 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,10 @@ experimental: (cd experimental && $(MAKE)) %.info: %.texi - makeinfo muse.texi + makeinfo $< %.html: %.texi - makeinfo --html --no-split muse.texi + makeinfo --html --no-split $< doc: muse.info muse.html @@ -43,7 +43,7 @@ test: (cd lisp && $(MAKE) test) distclean: realclean - -rm -f debian/dirs + -rm -f debian/dirs debian/files test -d ../muse-$(VERSION) && rm -r ../muse-$(VERSION) || : dist: distclean diff --git a/experimental/muse-xml.el b/experimental/muse-xml.el index 935ae77..e881c04 100644 --- a/experimental/muse-xml.el +++ b/experimental/muse-xml.el @@ -153,9 +153,9 @@ For more on the structure of this list, see (end-uli . "\n") (begin-oli . "\n") (end-oli . "\n") - (begin-ddt . "
\n
") - (start-dde . "
\n
") - (end-ddt . "
\n
")) + (begin-ddt . "\n") + (start-dde . "\n") + (end-ddt . "\n\n")) "Strings used for marking up text. These cover the most basic kinds of markup, the handling of which differs little between the various styles." diff --git a/lisp/muse-docbook.el b/lisp/muse-docbook.el index 7b9446b..6312ff9 100644 --- a/lisp/muse-docbook.el +++ b/lisp/muse-docbook.el @@ -146,8 +146,8 @@ For more on the structure of this list, see (end-verse . "") (begin-example . "") (end-example . "") - (begin-center . "
\n") - (end-center . "\n
") + (begin-center . "\n") + (end-center . "\n") (begin-quote . "
\n") (end-quote . "\n
") (begin-uli . "\n") -- 2.11.4.GIT