diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-29 08:50:04 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-29 08:50:04 -0700 |
commit | 26469a38e110614fd3ea603f0b6ee2ab6d27a3be (patch) | |
tree | 51e55466bdd4a5569410366c01b0d47d74254fa9 /src/systime.h | |
parent | bace45fe155ea01bb387dac6316852bb9c1c5df4 (diff) | |
download | emacs-26469a38e110614fd3ea603f0b6ee2ab6d27a3be.tar.gz |
Make lisp_time_argument work on all systems.
* src/lisp.h (lisp_time_argument): Move declaration ...
* src/systime.h (lisp_time_argument): ... here
* src/editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
Diffstat (limited to 'src/systime.h')
-rw-r--r-- | src/systime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/systime.h b/src/systime.h index bd789e9bd32..9f6a907a9c2 100644 --- a/src/systime.h +++ b/src/systime.h @@ -147,6 +147,9 @@ extern void set_waiting_for_input (EMACS_TIME *); #ifdef GCPRO1 /* defined in dired.c */ extern Lisp_Object make_time (time_t); + +/* defined in editfns.c*/ +extern int lisp_time_argument (Lisp_Object, time_t *, int *); #endif /* Compare times T1 and T2. Value is 0 if T1 and T2 are the same. |