aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/timer.c
diff options
context:
space:
mode:
authorJim Blandy1993-05-15 23:05:46 +0000
committerJim Blandy1993-05-15 23:05:46 +0000
commitad2e78fb7c50b3e94bc6cf0166daae562e65a535 (patch)
tree724ff69bab0a51ae0f709af3cc86cf4288e971b8 /lib-src/timer.c
parentddb7302160a5d5e2dfb5b71f5b1420664c826e29 (diff)
downloademacs-ad2e78fb7c50b3e94bc6cf0166daae562e65a535.tar.gz
emacs-ad2e78fb7c50b3e94bc6cf0166daae562e65a535.zip
* timer.c: Fix mispellings of get_date function's name.
Diffstat (limited to 'lib-src/timer.c')
-rw-r--r--lib-src/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/timer.c b/lib-src/timer.c
index 4111b2bfb82..2fa220e48a6 100644
--- a/lib-src/timer.c
+++ b/lib-src/timer.c
@@ -47,13 +47,13 @@ struct event *events; /* events[0 .. num_events-1] are the
47char *pname; /* programme name for error messages */ 47char *pname; /* programme name for error messages */
48 48
49/* Accepts a string of two fields seperated by FS. 49/* Accepts a string of two fields seperated by FS.
50 First field is string for getdate, saying when to wake-up. 50 First field is string for get_date, saying when to wake-up.
51 Second field is a token to identify the request. */ 51 Second field is a token to identify the request. */
52void 52void
53schedule (str) 53schedule (str)
54 char *str; 54 char *str;
55{ 55{
56 extern time_t getdate (); 56 extern time_t get_date ();
57 extern char *strcpy (); 57 extern char *strcpy ();
58 time_t now; 58 time_t now;
59 register char *p; 59 register char *p;