summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-01-30 00:27:22 +0100
committerMaxime Coste <frrrwww@gmail.com>2013-01-30 00:27:22 +0100
commit045aa0c7eccca5a51e6354fb29a8f8dcc1a9f4d7 (patch)
tree5334a86bc8c4422c1eaf0167b6bea2a4dd072639 /src
parente278196e99a46f78b034557aa5dfbefcdfebccd3 (diff)
style fix
Diffstat (limited to 'src')
-rw-r--r--src/main.cc2
1 files changed, 1 insertions, 1 deletions
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));
};