comparison src/ex_cmds.c @ 6539:6da912e32896 v7.4.596

updated for version 7.4.596 Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Tue, 27 Jan 2015 13:33:23 +0100
parents 005a6b650866
children cd7b5bbe4952
comparison
equal deleted inserted replaced
6538:08cbc3e11cb6 6539:6da912e32896
3528 (flags & ECMD_ADDBUF) || 3528 (flags & ECMD_ADDBUF) ||
3529 #endif 3529 #endif
3530 check_fname() == FAIL) 3530 check_fname() == FAIL)
3531 goto theend; 3531 goto theend;
3532 3532
3533 #ifdef FEAT_QUICKFIX
3533 /* ":e foobar" when already editing "foobar" will reload the file. 3534 /* ":e foobar" when already editing "foobar" will reload the file.
3534 * But when 'buftype' is "nofile" there is no file to load, so don't 3535 * But when 'buftype' is "nofile" there is no file to load, so don't
3535 * do anything. */ 3536 * do anything. */
3536 if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f') 3537 if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
3537 goto theend; 3538 goto theend;
3539 #endif
3538 3540
3539 oldbuf = (flags & ECMD_OLDBUF); 3541 oldbuf = (flags & ECMD_OLDBUF);
3540 } 3542 }
3541 3543
3542 #ifdef FEAT_AUTOCMD 3544 #ifdef FEAT_AUTOCMD