diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-01-30 00:27:22 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-01-30 00:27:22 +0100 |
| commit | 045aa0c7eccca5a51e6354fb29a8f8dcc1a9f4d7 (patch) | |
| tree | 5334a86bc8c4422c1eaf0167b6bea2a4dd072639 /src | |
| parent | e278196e99a46f78b034557aa5dfbefcdfebccd3 (diff) | |
style fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cc | 2 |
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)); }; |
