comparison src/regexp_nfa.c @ 14159:c9342023ea6f v8.1.0097

patch 8.1.0097: superfluous space before exclamation mark commit https://github.com/vim/vim/commit/5efa0102de6ed6049fb19e1e83787e5b3b24b6a2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 22 21:42:30 2018 +0200 patch 8.1.0097: superfluous space before exclamation mark Problem: Superfluous space before exclamation mark. Solution: Remove the space. Don't translate debug message.
author Christian Brabandt <cb@256bit.org>
date Fri, 22 Jun 2018 21:45:06 +0200
parents 1cf832945469
children 7cac4646c552
comparison
equal deleted inserted replaced
14158:49172c13eab2 14159:c9342023ea6f
2987 #endif 2987 #endif
2988 fprintf(df, "\n--------------------------\n"); 2988 fprintf(df, "\n--------------------------\n");
2989 fclose(df); 2989 fclose(df);
2990 } 2990 }
2991 #endif 2991 #endif
2992 EMSG(_("E874: (NFA) Could not pop the stack !")); 2992 EMSG(_("E874: (NFA) Could not pop the stack!"));
2993 } 2993 }
2994 2994
2995 /* 2995 /*
2996 * Push an item onto the stack. 2996 * Push an item onto the stack.
2997 */ 2997 */
5591 5591
5592 #ifdef NFA_REGEXP_DEBUG_LOG 5592 #ifdef NFA_REGEXP_DEBUG_LOG
5593 debug = fopen(NFA_REGEXP_DEBUG_LOG, "a"); 5593 debug = fopen(NFA_REGEXP_DEBUG_LOG, "a");
5594 if (debug == NULL) 5594 if (debug == NULL)
5595 { 5595 {
5596 EMSG2(_("(NFA) COULD NOT OPEN %s !"), NFA_REGEXP_DEBUG_LOG); 5596 EMSG2("(NFA) COULD NOT OPEN %s!", NFA_REGEXP_DEBUG_LOG);
5597 return FALSE; 5597 return FALSE;
5598 } 5598 }
5599 #endif 5599 #endif
5600 nfa_match = FALSE; 5600 nfa_match = FALSE;
5601 5601