mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 12:40:56 -08:00
Fix insertion of " inside @smallexample.
lisp/textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
This commit is contained in:
parent
81d8cc5377
commit
8d43bd3023
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-12-07 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* textmodes/texinfo.el (texinfo-enable-quote-envs): Add
|
||||||
|
"smallexample".
|
||||||
|
|
||||||
2012-12-07 Le Wang <l26wang@gmail.com>
|
2012-12-07 Le Wang <l26wang@gmail.com>
|
||||||
|
|
||||||
* hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
|
* hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
|
||||||
|
|
|
||||||
|
|
@ -676,7 +676,8 @@ Puts point on a blank line between them."
|
||||||
(not (match-end 1)))))
|
(not (match-end 1)))))
|
||||||
|
|
||||||
(defvar texinfo-enable-quote-macros "@\\(code\\|samp\\|kbd\\)\\>")
|
(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)
|
(defun texinfo-insert-quote (&optional arg)
|
||||||
"Insert the appropriate quote mark for Texinfo.
|
"Insert the appropriate quote mark for Texinfo.
|
||||||
Usually inserts the value of `texinfo-open-quote' (normally ``) or
|
Usually inserts the value of `texinfo-open-quote' (normally ``) or
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue