comparison src/buffer.c @ 943:e70aad5761b5 v7.0.069

updated for version 7.0-069
author vimboss
date Tue, 29 Aug 2006 14:48:14 +0000
parents e44efb3af0d5
children c06c658691e2
comparison
equal deleted inserted replaced
942:29bf49bad20d 943:e70aad5761b5
3322 */ 3322 */
3323 if (fmt[0] == '%' && fmt[1] == '!') 3323 if (fmt[0] == '%' && fmt[1] == '!')
3324 { 3324 {
3325 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox); 3325 usefmt = eval_to_string_safe(fmt + 2, NULL, use_sandbox);
3326 if (usefmt == NULL) 3326 if (usefmt == NULL)
3327 usefmt = (char_u *)""; 3327 usefmt = fmt;
3328 } 3328 }
3329 #endif 3329 #endif
3330 3330
3331 if (fillchar == 0) 3331 if (fillchar == 0)
3332 fillchar = ' '; 3332 fillchar = ' ';