[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [AUCTeX] TeX error parsing: request for testing
From: |
Tassilo Horn |
Subject: |
Re: [AUCTeX] TeX error parsing: request for testing |
Date: |
Fri, 25 Apr 2014 12:39:20 +0200 |
User-agent: |
Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.4.50 (gnu/linux) |
Tassilo Horn <address@hidden> writes:
>>> The problem is that the TeX compile output gets hard-wrapped at
>>> column 80, and with the new TL install and LuaTeX, I get tons of
>>> files in the compile output whose paths are all about 80 columns
>>> wide.
>>
>> AUCTeX contains code to undo those line wraps. Maybe it fails in
>> your case? Look for the number 79 in tex-buf.el to find the code.
>
> Indeed, it does remove about 90% of the wraps but fails at others.
Ah, now I've figured out what's wrong with the wraps that don't get
removed; they are wrapped at column 80, not column 79.
Also, the heuristic in `TeX-format-filter' forbids removing newlines if
they follow a period. Thus, lines like
(/usr/local/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.
lua)
don't get joined.
If I remove that restriction and consider newlines both at column 79 and
80, it seems to catch all of them (but of course it might then catch too
much)...
Bye,
Tassilo