comparison src/undo.c @ 835:8bebcabccc2c v7.0e01

updated for version 7.0e01
author vimboss
date Mon, 17 Apr 2006 22:14:47 +0000
parents 6675076019ae
children 1f3b1021f002
comparison
equal deleted inserted replaced
834:5117153003bd 835:8bebcabccc2c
1391 curtime = localtime(&tt); 1391 curtime = localtime(&tt);
1392 (void)strftime((char *)buf, buflen, "%H:%M:%S", curtime); 1392 (void)strftime((char *)buf, buflen, "%H:%M:%S", curtime);
1393 } 1393 }
1394 else 1394 else
1395 #endif 1395 #endif
1396 vim_snprintf((char *)buf, buflen, "%ld seconds ago", 1396 vim_snprintf((char *)buf, buflen, _("%ld seconds ago"),
1397 (long)(time(NULL) - tt)); 1397 (long)(time(NULL) - tt));
1398 } 1398 }
1399 1399
1400 /* 1400 /*
1401 * ":undojoin": continue adding to the last entry list 1401 * ":undojoin": continue adding to the last entry list