Mercurial > hg > xemacs-beta
comparison src/editfns.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | 5fd7ba8b56e7 |
children | 6e99cc8c6ca5 |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
1103 characters appearing in the day and month names may be incorrect. | 1103 characters appearing in the day and month names may be incorrect. |
1104 */ | 1104 */ |
1105 (format_string, time_)) | 1105 (format_string, time_)) |
1106 { | 1106 { |
1107 time_t value; | 1107 time_t value; |
1108 size_t size; | 1108 Memory_Count size; |
1109 | 1109 |
1110 CHECK_STRING (format_string); | 1110 CHECK_STRING (format_string); |
1111 | 1111 |
1112 if (! lisp_to_time (time_, &value)) | 1112 if (! lisp_to_time (time_, &value)) |
1113 invalid_argument ("Invalid time specification", Qunbound); | 1113 invalid_argument ("Invalid time specification", Qunbound); |
1266 */ | 1266 */ |
1267 (specified_time)) | 1267 (specified_time)) |
1268 { | 1268 { |
1269 time_t value; | 1269 time_t value; |
1270 char *the_ctime; | 1270 char *the_ctime; |
1271 size_t len; | 1271 EMACS_INT len; /* this is what make_ext_string() accepts; #### |
1272 should it be an Extcount? */ | |
1272 | 1273 |
1273 if (! lisp_to_time (specified_time, &value)) | 1274 if (! lisp_to_time (specified_time, &value)) |
1274 value = -1; | 1275 value = -1; |
1275 the_ctime = ctime (&value); | 1276 the_ctime = ctime (&value); |
1276 | 1277 |