comparison src/ex_docmd.c @ 856:8cd729851562 v7.0g

updated for version 7.0g
author vimboss
date Sun, 30 Apr 2006 18:54:39 +0000
parents d3bbb5dd3913
children b933657f7c9d
comparison
equal deleted inserted replaced
855:d2a4f08396fe 856:8cd729851562
8811 char_u *arg = NULL; 8811 char_u *arg = NULL;
8812 int l; 8812 int l;
8813 char_u *p; 8813 char_u *p;
8814 #endif 8814 #endif
8815 8815
8816 if (ex_normal_lock > 0)
8817 {
8818 EMSG(_(e_secure));
8819 return;
8820 }
8816 if (ex_normal_busy >= p_mmd) 8821 if (ex_normal_busy >= p_mmd)
8817 { 8822 {
8818 EMSG(_("E192: Recursive use of :normal too deep")); 8823 EMSG(_("E192: Recursive use of :normal too deep"));
8819 return; 8824 return;
8820 } 8825 }