aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/screen.cpp
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-05-27 14:41:16 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-05-27 14:44:30 -0700
commit9ad3488b5d076729b39bd3f91abda4fd10bea21c (patch)
treefd1f5b8fb4b723a80c81b0772a68b63876d25b9a /src/screen.cpp
parent8f420b9272e526097a73ad10ce74ce3edbb67b9e (diff)
fix some style bogosities that crept in
Diffstat (limited to 'src/screen.cpp')
-rw-r--r--src/screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen.cpp b/src/screen.cpp
index 882bd8d8..08fca25d 100644
--- a/src/screen.cpp
+++ b/src/screen.cpp
@@ -505,8 +505,8 @@ static void s_move(screen_t *s, data_buffer_t *b, int new_x, int new_y) {
// Use the bulk ('multi') output for cursor movement if it is supported and it would be shorter
// Note that this is required to avoid some visual glitches in iTerm (issue #1448).
- bool use_multi = multi_str != NULL && multi_str[0] != '\0' &&
- abs(x_steps) * strlen(str) > strlen(multi_str);
+ bool use_multi =
+ multi_str != NULL && multi_str[0] != '\0' && abs(x_steps) * strlen(str) > strlen(multi_str);
if (use_multi) {
char *multi_param = tparm(multi_str, abs(x_steps));
writembs(multi_param);