From 34904efd9daca8cc4dc6f78932cacf9195710756 Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Fri, 22 Jan 2016 19:48:52 +0100 Subject: window: Fix code style. --- src/nvim/window.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/nvim/window.c b/src/nvim/window.c index 2542c7a11e..62f27a80e0 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -4837,16 +4837,15 @@ static void frame_add_height(frame_T *frp, int n) */ char_u *grab_file_name(long count, linenr_T *file_lnum) { - int options = FNAME_MESS|FNAME_EXP|FNAME_REL|FNAME_UNESC; + int options = FNAME_MESS | FNAME_EXP | FNAME_REL | FNAME_UNESC; if (VIsual_active) { size_t len; char_u *ptr; if (get_visual_text(NULL, &ptr, &len) == FAIL) return NULL; - return find_file_name_in_path(ptr, len, options, - count, curbuf->b_ffname); + return find_file_name_in_path(ptr, len, options, count, curbuf->b_ffname); } - return file_name_at_cursor(options|FNAME_HYP, count, file_lnum); + return file_name_at_cursor(options | FNAME_HYP, count, file_lnum); } /* -- cgit