From 3f9c4e5ae437f2ecfe71fa40de0ff8209259c572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sun, 8 Nov 2015 14:33:09 +0100 Subject: Remove trailing white space from source files --- vis.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vis.c') diff --git a/vis.c b/vis.c index 31e4ecf..0001501 100644 --- a/vis.c +++ b/vis.c @@ -67,10 +67,10 @@ static void file_free(Vis *vis, File *file) { return; if (--file->refcount > 0) return; - + text_free(file->text); free((char*)file->name); - + if (file->prev) file->prev->next = file->next; if (file->next) @@ -111,7 +111,7 @@ static File *file_new(Vis *vis, const char *filename) { text = text_load(NULL); if (!text) return NULL; - + File *file = file_new_text(vis, text); if (!file) { text_free(text); @@ -748,7 +748,7 @@ static const char *vis_keys_raw(Vis *vis, Buffer *buf, const char *input) { char *keys = buf->data, *start = keys, *cur = keys, *end; bool prefix = false; KeyBinding *binding = NULL; - + while (cur && *cur) { if (!(end = (char*)vis_keys_next(vis, cur))) -- cgit v1.2.3