emacs-devel
[Top][All Lists]
Advanced

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

Re: [Emacs-diffs] /srv/bzr/emacs/trunk r112126: Reorder conditions that


From: Eli Zaretskii
Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r112126: Reorder conditions that are written backwards
Date: Mon, 25 Mar 2013 17:49:41 +0200

> From: René Kyllingstad <address@hidden>
> Date: Mon, 25 Mar 2013 16:38:06 +0100
> Cc: Andreas Schwab <address@hidden>,
>       "Emacs Dev \[emacs-devel\]" <address@hidden>
> 
> > >   Reorder conditions that are written backwards
> >
> > Backwards according to what?
> 
> If you were explaining it to someone, which would you say:
> 
>      If i is greater than zero and less than N
> 
> or
> 
>      If zero is less than i, and i is less than N

This is not really relevant, as Andreas didn't change any code like
this:

  if (0 < i && i < N)

He only changed things like this:

  if (0 < i)




reply via email to

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