emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111008: Fix insertion of " inside


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111008: Fix insertion of " inside @smallexample.
Date: Fri, 07 Dec 2012 17:52:40 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111008
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Fri 2012-12-07 17:52:40 +0200
message:
  Fix insertion of " inside @smallexample.
  
   lisp/textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
modified:
  lisp/ChangeLog
  lisp/textmodes/texinfo.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-12-07 05:00:04 +0000
+++ b/lisp/ChangeLog    2012-12-07 15:52:40 +0000
@@ -1,3 +1,8 @@
+2012-12-07  Eli Zaretskii  <address@hidden>
+
+       * textmodes/texinfo.el (texinfo-enable-quote-envs): Add
+       "smallexample".
+
 2012-12-07  Le Wang  <address@hidden>
 
        * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in

=== modified file 'lisp/textmodes/texinfo.el'
--- a/lisp/textmodes/texinfo.el 2012-07-11 23:13:41 +0000
+++ b/lisp/textmodes/texinfo.el 2012-12-07 15:52:40 +0000
@@ -676,7 +676,8 @@
         (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]