From 045aa0c7eccca5a51e6354fb29a8f8dcc1a9f4d7 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 30 Jan 2013 00:27:22 +0100 Subject: [PATCH] style fix --- src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cc b/src/main.cc index 3beb97e2..5461dcd2 100644 --- a/src/main.cc +++ b/src/main.cc @@ -372,7 +372,7 @@ void do_rotate_selections(Context& context) if (count == 0) count = 1; SelectionList sels = context.editor().selections(); - count %= sels .size(); + count %= sels.size(); std::rotate(sels.begin(), sels.begin() + count, sels.end()); context.editor().select(std::move(sels)); };