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: Ikumi Keita
Subject: Re: Onwards to lexical binding (attempt 1)
Date: Sat, 05 Sep 2020 22:57:01 +0900

Hi Tassilo,

>>>>> Tassilo Horn <tsdh@gnu.org> writes:
> I just did so (-> TeX-exit-mark), and also with last-optional-rejected
> (-> TeX-last-optional-rejected).  Inserting a parbox works again. :-)

Now it works for me, too, thanks!

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?

Regards,
Ikumi Keita



reply via email to

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