summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-05-26 18:26:25 +0200
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-05-26 18:26:25 +0200
commita1d8a495d81d2a78fec72456051ebb75a7c4d238 (patch)
tree9e2bba88146cb7f1f2bb2eac0c2208d32d0b20d9
parentf8f62656145ecf3e4f09a6431cfd9a4a37a5bbc8 (diff)
downloadratpoison-a1d8a495d81d2a78fec72456051ebb75a7c4d238.zip
draw_string: indentation
-rw-r--r--src/bar.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bar.c b/src/bar.c
index f45d831..7897d93 100644
--- a/src/bar.c
+++ b/src/bar.c
@@ -369,8 +369,10 @@ draw_string (rp_screen *s, char *msg, int mark_start, int mark_end)
if (update)
{
- draw_partial_string (s, msg, x_offset, y_offset, start, i - (update == 2), style);
- x_offset += rp_text_width (s, msg + start, i - (update == 2) - start);
+ draw_partial_string (s, msg, x_offset, y_offset, start,
+ i - (update == 2), style);
+ x_offset += rp_text_width (s, msg + start,
+ i - (update == 2) - start);
start = i;
if (update == 2)
{