comparison src/buffer.c @ 9228:ea504064c996 v7.4.1897

commit https://github.com/vim/vim/commit/fd89d7ea81b18d32363456b16258174dc9e095dc Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 4 20:25:05 2016 +0200 patch 7.4.1897 Problem: Various typos, long lines and style mistakes. Solution: Fix the typos, wrap lines, improve style.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Jun 2016 20:30:06 +0200
parents 18bbf31015c2
children f094d4085014
comparison
equal deleted inserted replaced
9227:ecb621205ed1 9228:ea504064c996
2514 2514
2515 if (nr == 0) 2515 if (nr == 0)
2516 nr = curwin->w_alt_fnum; 2516 nr = curwin->w_alt_fnum;
2517 for (buf = firstbuf; buf != NULL; buf = buf->b_next) 2517 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2518 if (buf->b_fnum == nr) 2518 if (buf->b_fnum == nr)
2519 return (buf); 2519 return buf;
2520 return NULL; 2520 return NULL;
2521 } 2521 }
2522 2522
2523 /* 2523 /*
2524 * Get name of file 'n' in the buffer list. 2524 * Get name of file 'n' in the buffer list.