auctex-devel
[Top][All Lists]
Advanced

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

Re: Onwards to lexical binding (attempt 1)


From: Tassilo Horn
Subject: Re: Onwards to lexical binding (attempt 1)
Date: Sat, 05 Sep 2020 16:57:17 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Ikumi Keita <ikumi@ikumi.que.jp> writes:

>> ----------------------------------------------------------------------
>> modified   latex.el
>> @@ -1316,9 +1316,9 @@ Just like array and tabular."
>>    (save-excursion
>>      (LaTeX-find-matching-begin)
>>      (end-of-line)
>> -    (let ((exit-mark (if (boundp 'exit-mark)
>> -                     exit-mark
>> -                   (make-marker))))
>> +    (let ((TeX-exit-mark (if (boundp 'TeX-exit-mark)
>> +                         TeX-exit-mark
>> +                       (make-marker))))
>>        (TeX-parse-arguments args))))
>> ----------------------------------------------------------------------
>> Shouldn't this boundp test be markerp because TeX-exit-mark is now bound
>> always?
>
> Or it can just be
>    (or TeX-exit-mark
>        (make-marker))
> for simplicity.

Right, just go ahead. ;-)

Bye,
Tassilo




reply via email to

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