From 8d43bd30230ee2315aade40db688716679ebcf7c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 7 Dec 2012 17:52:40 +0200 Subject: [PATCH] Fix insertion of " inside @smallexample. lisp/textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample". --- lisp/ChangeLog | 5 +++++ lisp/textmodes/texinfo.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b7b62badc2..ff604d0236b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-12-07 Eli Zaretskii + + * textmodes/texinfo.el (texinfo-enable-quote-envs): Add + "smallexample". + 2012-12-07 Le Wang * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 4e7715dcea9..52b9ab092ae 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -676,7 +676,8 @@ Puts point on a blank line between them." (not (match-end 1))))) (defvar texinfo-enable-quote-macros "@\\(code\\|samp\\|kbd\\)\\>") -(defvar texinfo-enable-quote-envs '("example\\>" "lisp\\>")) +(defvar texinfo-enable-quote-envs + '("example\\>" "smallexample\\>" "lisp\\>")) (defun texinfo-insert-quote (&optional arg) "Insert the appropriate quote mark for Texinfo. Usually inserts the value of `texinfo-open-quote' (normally ``) or -- 2.11.4.GIT