emacs-devel
[Top][All Lists]
Advanced

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

Re: [Emacs-diffs] trunk r113221: Implement visual-order cursor motion.


From: Stefan Monnier
Subject: Re: [Emacs-diffs] trunk r113221: Implement visual-order cursor motion.
Date: Sat, 29 Jun 2013 11:12:34 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

> +     (if (< n 0)
> +         (move-point-visually -1)
> +       (move-point-visually 1))

Aka
        (move-point-visually (if (< n 0) -1 1))

> +     (sit-for 0))

I think this deserves a comment, because I for one have no idea why
it's here.


        Stefan



reply via email to

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