Ikumi Keita <ik...@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