From 31dbecfb083efa5805462b50c176eb99629172bb Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Sun, 9 Jul 2006 18:28:25 +0000 Subject: [PATCH] Make space around emdash optional. * lisp/muse-publish.el (muse-publish-markup-regexps): Make space around emdash optional. git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-163 --- ChangeLog | 14 ++++++++++++++ lisp/muse-publish.el | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9c21b83..3479717 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,20 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0 # +2006-07-09 18:28:25 GMT Michael Olson patch-163 + + Summary: + Make space around emdash optional. + Revision: + muse--main--1.0--patch-163 + + * lisp/muse-publish.el (muse-publish-markup-regexps): Make space around + emdash optional. + + modified files: + ChangeLog lisp/muse-publish.el + + 2006-07-08 20:38:12 GMT Michael Olson patch-162 Summary: diff --git a/lisp/muse-publish.el b/lisp/muse-publish.el index 330e9c0..ccea12b 100644 --- a/lisp/muse-publish.el +++ b/lisp/muse-publish.el @@ -150,8 +150,8 @@ If non-nil, publish comments using the markup of the current style." (2400 ,(concat "^\\([" muse-regexp-blank "]+\\).+") 0 quote) ;; the emdash ("--") - (2500 ,(concat "\\(^\\|[" muse-regexp-blank "]+\\)--\\($\\|[" - muse-regexp-blank "]+\\)") + (2500 ,(concat "\\(^\\|[" muse-regexp-blank "]*\\)--\\($\\|[" + muse-regexp-blank "]*\\)") 0 emdash) ;; "verse" text is indicated the same way as a quoted e-mail -- 2.11.4.GIT