1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* timer.c: Fix mispellings of get_date function's name.

This commit is contained in:
Jim Blandy 1993-05-15 23:05:46 +00:00
parent ddb7302160
commit ad2e78fb7c

View file

@ -47,13 +47,13 @@ struct event *events; /* events[0 .. num_events-1] are the
char *pname; /* programme name for error messages */
/* Accepts a string of two fields seperated by FS.
First field is string for getdate, saying when to wake-up.
First field is string for get_date, saying when to wake-up.
Second field is a token to identify the request. */
void
schedule (str)
char *str;
{
extern time_t getdate ();
extern time_t get_date ();
extern char *strcpy ();
time_t now;
register char *p;