Long ago, there was a fervent debate about whether UNTIL was a word that was "naturally paired" with WHILE. So it was wondered if UNTIL should be an arity-2 function which was effectively WHILE-NOT, instead of its arity-1 form.
The altered arity-2 UNTIL was introduced in Ren-C to try it, with LOOP-UNTIL taking over the old arity-1 behavior. For good measure, LOOP-WHILE was added as an arity-1 native as well.
To make a long story short: I guess I don't think that it wound up making that big a difference in the scheme of things. The primary impact on me personally, was actually just making code golf programs longer. (Having U be UNTIL is an appealing option.)
When you look at forever [...] and until [...], they seem to go together sensibly. You might even ask--as some have--if it's WHILE that's weird. If you think about WHILE and UNTIL as being two words offering entry points into loop space, it's like it's giving you two common ones with common words.
I didn't wind up using loop-while and loop-until as much as I thought I would. So here in the time of analyzing changes for goodness or badness and trying to pin things down, I think the status quo is the better answer. Plus, when there are so many other slam-dunk good changes, this one is more a distraction than anything else.
So people who fought for the status quo--DocKimbel/Rebolek/Oldes/etc.--get to win on this one, I guess.