>>>>> Ikumi Keita <ik...@ikumi.que.jp> writes:
> By the way, I think this part should be improved:
> ----------------------------------------------------------------------
> 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.

Bye,
Ikumi Keita

Reply via email to