comparison src/buffer.c @ 2545:298d8d6e69be vim73

Avoid warnings from the clang compiler. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Fri, 13 Aug 2010 11:18:02 +0200
parents 6768ebd0bc04
children 7c2e6ba1d702
comparison
equal deleted inserted replaced
2544:20e83abf88b1 2545:298d8d6e69be
5080 set_last_cursor(win); 5080 set_last_cursor(win);
5081 #else 5081 #else
5082 set_last_cursor(curwin); 5082 set_last_cursor(curwin);
5083 #endif 5083 #endif
5084 5084
5085 fprintf(fp, _("\n# Buffer list:\n")); 5085 fputs(_("\n# Buffer list:\n"), fp);
5086 for (buf = firstbuf; buf != NULL ; buf = buf->b_next) 5086 for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
5087 { 5087 {
5088 if (buf->b_fname == NULL 5088 if (buf->b_fname == NULL
5089 || !buf->b_p_bl 5089 || !buf->b_p_bl
5090 #ifdef FEAT_QUICKFIX 5090 #ifdef FEAT_QUICKFIX