mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 7.4.2101
Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
This commit is contained in:
@@ -1402,13 +1402,13 @@ luaV_buffer(lua_State *L)
|
||||
if (lua_isnumber(L, 1)) /* by number? */
|
||||
{
|
||||
int n = lua_tointeger(L, 1);
|
||||
for (buf = firstbuf; buf != NULL; buf = buf->b_next)
|
||||
FOR_ALL_BUFFERS(buf)
|
||||
if (buf->b_fnum == n) break;
|
||||
}
|
||||
else { /* by name */
|
||||
size_t l;
|
||||
const char *s = lua_tolstring(L, 1, &l);
|
||||
for (buf = firstbuf; buf != NULL; buf = buf->b_next)
|
||||
FOR_ALL_BUFFERS(buf)
|
||||
{
|
||||
if (buf->b_ffname == NULL || buf->b_sfname == NULL)
|
||||
{
|
||||
|
Reference in New Issue
Block a user