bug-auctex
[Top][All Lists]
Advanced

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

bug#26032: Indenting in tabulars without &


From: Arash Esbati
Subject: bug#26032: Indenting in tabulars without &
Date: Wed, 08 Mar 2017 21:57:42 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2

Hi Mosè,

Mosè Giordano <address@hidden> writes:

>> 2017-03-08 20:43 GMT+01:00 Arash Esbati <address@hidden>:
>>
> have you been writing many tables lately? ;-)

Tough luck, really! I did exactly one table, with side effects ;-)

>> My suggest to guard (- (current-column) 1) with a (wholenump ...) and
>> return (+ 2 beg-col) as fallback if the test is not true:
>
> Yeah, a fallback option in case we get non-sense result is always
> useful.  Alas, `wholenump' is not available in XEmacs.

Thanks for the heads-up, I will replace it with

    (if (< (- (current-column) 1) 0)
        (+ 2 beg-col)
      (- (current-column) 1))

> Remember also the test!

Yes, will do.

Best, Arash





reply via email to

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