bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#11189: 24.0.95; texinfmt deletes " and \ at bol


From: Katsumi Yamaoka
Subject: bug#11189: 24.0.95; texinfmt deletes " and \ at bol
Date: Fri, 06 Apr 2012 16:03:29 +0900
User-agent: Gnus/5.130004 (真 Gnus v0.4) Emacs/24.0.95 (i686-pc-cygwin)

Hi,

Please try `M-x texinfo-format-buffer' in a buffer filled with
this text:

--8<---------------cut here---------------start------------->8---
@setfilename /tmp/test

111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 111 @dfn{FOO}

222 222 222 222 222 222 222 222 222 222 222 222 222 222 222 222 222 ``BAR''

333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 \BAZ/
--8<---------------cut here---------------end--------------->8---

@dfn{FOO} and ``BAR'' should be formatted into "FOO" and "BAR"
respectively, but you will see the leftmost " and \ disappear.
This happens with not only Emacs 24 but also at least Emacs 23.

`back-to-indentation' does it in this way

  texinfo-format-refill
    -> fill-paragraph
      -> fill-indent-to-left-margin
        -> indent-line-to
          -> back-to-indentation

because `texinfo-format-syntax-table' sets the character syntax
of " and \ to " ".  Though I'm not sure whether that is the root
cause, modifying those syntax to "w" seems to work around it.

Note that texinfmt.el is still indispensable for formatting non-
English texinfo files.

Regards,





reply via email to

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