[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: texi2dvi (from texinfo 4.8) does not honor @.
From: |
Karl Berry |
Subject: |
Re: texi2dvi (from texinfo 4.8) does not honor @. |
Date: |
Fri, 10 Jun 2005 10:33:29 -0400 |
Hi Jim,
I was surprised to see that in both pdf and DVI output,
address@hidden' does not render as it is documented to do.
I am surprised too :).
The documentation led me to expect a sentence-ending
amount of space after the period.
Indeed, that is what is supposed to happen.
I checked in the patch below for it. Thanks for the report :).
karl
***************
*** 655,667 ****
\let\/=\allowbreak
% @. is an end-of-sentence period.
! \def\.{.\spacefactor=\endofsentencespacefactor}
% @! is an end-of-sentence bang.
! \def\!{!\spacefactor=\endofsentencespacefactor}
% @? is an end-of-sentence query.
! \def\?{?\spacefactor=\endofsentencespacefactor}
% @frenchspacing on|off says whether to put extra space after punctuation.
%
--- 655,667 ----
\let\/=\allowbreak
% @. is an end-of-sentence period.
! \def\.{.\spacefactor=\endofsentencespacefactor\space}
% @! is an end-of-sentence bang.
! \def\!{!\spacefactor=\endofsentencespacefactor\space}
% @? is an end-of-sentence query.
! \def\?{?\spacefactor=\endofsentencespacefactor\space}
% @frenchspacing on|off says whether to put extra space after punctuation.
%