comparison src/ex_docmd.c @ 972:decce137e7be v7.0.098

updated for version 7.0-098
author vimboss
date Sun, 10 Sep 2006 19:07:28 +0000
parents a9ffa7c7db77
children 81cf1b6e0a2d
comparison
equal deleted inserted replaced
971:a9ffa7c7db77 972:decce137e7be
8420 /* TODO: redirect to a buffer */ 8420 /* TODO: redirect to a buffer */
8421 8421
8422 else 8422 else
8423 EMSG2(_(e_invarg2), eap->arg); 8423 EMSG2(_(e_invarg2), eap->arg);
8424 } 8424 }
8425
8426 /* Make sure redirection is not off. Can happen for cmdline completion
8427 * that indirectly invokes a command to catch its output. */
8428 if (redir_fd != NULL
8429 #ifdef FEAT_EVAL
8430 || redir_reg || redir_vname
8431 #endif
8432 )
8433 redir_off = FALSE;
8425 } 8434 }
8426 8435
8427 /* 8436 /*
8428 * ":redraw": force redraw 8437 * ":redraw": force redraw
8429 */ 8438 */