From 3ca9f9ad5360966e56e62f6a8ee74f21be675618 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Tue, 19 Jul 2005 07:51:54 +0000 Subject: [PATCH] muse-texinfo: Fix #2635 by adding `}' and `{' to specials list. * lisp/muse-texinfo.el (muse-texinfo-markup-specials): Add `{' and `}' to list. This should fix #2635. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-161 --- ChangeLog | 14 ++++++++++++++ lisp/muse-texinfo.el | 4 +++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d24133e..be8e675 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,20 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-07-19 07:51:54 GMT Michael Olson patch-161 + + Summary: + muse-texinfo: Fix #2635 by adding `}' and `{' to specials list. + Revision: + muse--main--1.0--patch-161 + + * lisp/muse-texinfo.el (muse-texinfo-markup-specials): Add `{' and `}' to + list. This should fix #2635. + + modified files: + ChangeLog lisp/muse-texinfo.el + + 2005-07-19 07:24:38 GMT Michael Olson patch-160 Summary: diff --git a/lisp/muse-texinfo.el b/lisp/muse-texinfo.el index 2dfc6b3..668817f 100644 --- a/lisp/muse-texinfo.el +++ b/lisp/muse-texinfo.el @@ -169,7 +169,9 @@ differs little between the various styles." :group 'muse-texinfo) (defcustom muse-texinfo-markup-specials - '((?@ . "@@")) + '((?@ . "@@") + (?{ . "@{") + (?} . "@}")) "A table of characters which must be represented specially." :type '(alist :key-type character :value-type string) :group 'muse-texinfo) -- 2.11.4.GIT