comparison src/netbeans.c @ 9649:fd9727ae3c49 v7.4.2101

commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 24 22:04:11 2016 +0200 patch 7.4.2101 Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
author Christian Brabandt <cb@256bit.org>
date Sun, 24 Jul 2016 22:15:07 +0200
parents d63b85fe3dc7
children 4aead6a9b7a9
comparison
equal deleted inserted replaced
9648:227649fd4301 9649:fd9727ae3c49
471 471
472 if (STRCMP(cmd, "DETACH") == 0) 472 if (STRCMP(cmd, "DETACH") == 0)
473 { 473 {
474 buf_T *buf; 474 buf_T *buf;
475 475
476 for (buf = firstbuf; buf != NULL; buf = buf->b_next) 476 FOR_ALL_BUFFERS(buf)
477 buf->b_has_sign_column = FALSE; 477 buf->b_has_sign_column = FALSE;
478 478
479 /* The IDE is breaking the connection. */ 479 /* The IDE is breaking the connection. */
480 netbeans_close(); 480 netbeans_close();
481 return; 481 return;
719 { 719 {
720 buf_T *bufp; 720 buf_T *bufp;
721 int n; 721 int n;
722 722
723 n = 0; 723 n = 0;
724 for (bufp = firstbuf; bufp != NULL; bufp = bufp->b_next) 724 FOR_ALL_BUFFERS(bufp)
725 if (bufp->b_changed) 725 if (bufp->b_changed)
726 ++n; 726 ++n;
727 return n; 727 return n;
728 } 728 }
729 729