comparison src/undo.c @ 2210:8c6a66e2b3cc vim73

Add :nbstart and :nbclose.
author Bram Moolenaar <bram@vim.org>
date Sat, 22 May 2010 21:34:09 +0200
parents 7c8c7c95a865
children f8222d1f9a73
comparison
equal deleted inserted replaced
2209:d0ddf7ba1630 2210:8c6a66e2b3cc
344 #ifdef FEAT_NETBEANS_INTG 344 #ifdef FEAT_NETBEANS_INTG
345 /* 345 /*
346 * Netbeans defines areas that cannot be modified. Bail out here when 346 * Netbeans defines areas that cannot be modified. Bail out here when
347 * trying to change text in a guarded area. 347 * trying to change text in a guarded area.
348 */ 348 */
349 if (usingNetbeans) 349 if (netbeans_active())
350 { 350 {
351 if (netbeans_is_guarded(top, bot)) 351 if (netbeans_is_guarded(top, bot))
352 { 352 {
353 EMSG(_(e_guarded)); 353 EMSG(_(e_guarded));
354 return FAIL; 354 return FAIL;