From 2ec3ebd6193fa5be0cba1b3a078d49392c890eae Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Mon, 3 Jul 2006 01:33:17 +0000 Subject: [PATCH] Fix publishing of blank table fields. * lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank fields work properly. git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-159 --- ChangeLog | 14 ++++++++++++++ lisp/muse-regexps.el | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3bd4d6b..ed02202 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,20 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0 # +2006-07-03 01:33:17 GMT Michael Olson patch-159 + + Summary: + Fix publishing of blank table fields. + Revision: + muse--main--1.0--patch-159 + + * lisp/muse-regexps.el (muse-table-field-regexp): Make publishing blank + fields work properly. + + modified files: + ChangeLog lisp/muse-regexps.el + + 2006-07-03 00:39:47 GMT Michael Olson patch-158 Summary: diff --git a/lisp/muse-regexps.el b/lisp/muse-regexps.el index dba1636..27e92f8 100644 --- a/lisp/muse-regexps.el +++ b/lisp/muse-regexps.el @@ -162,7 +162,7 @@ The first match string must contain the term." (defcustom muse-table-field-regexp (concat "[" muse-regexp-blank "]+\\(|+\\)\\(?:[" - muse-regexp-blank "]+\\|$\\)") + muse-regexp-blank "]\\|$\\)") "Regexp used to match table separators when publishing." :type 'regexp :group 'muse-regexp) -- 2.11.4.GIT