diff options
| author | Dan Nicolaescu | 2010-07-29 08:50:04 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-29 08:50:04 -0700 |
| commit | 26469a38e110614fd3ea603f0b6ee2ab6d27a3be (patch) | |
| tree | 51e55466bdd4a5569410366c01b0d47d74254fa9 /src/systime.h | |
| parent | bace45fe155ea01bb387dac6316852bb9c1c5df4 (diff) | |
| download | emacs-26469a38e110614fd3ea603f0b6ee2ab6d27a3be.tar.gz emacs-26469a38e110614fd3ea603f0b6ee2ab6d27a3be.zip | |
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 *); | |||
| 147 | #ifdef GCPRO1 | 147 | #ifdef GCPRO1 |
| 148 | /* defined in dired.c */ | 148 | /* defined in dired.c */ |
| 149 | extern Lisp_Object make_time (time_t); | 149 | extern Lisp_Object make_time (time_t); |
| 150 | |||
| 151 | /* defined in editfns.c*/ | ||
| 152 | extern int lisp_time_argument (Lisp_Object, time_t *, int *); | ||
| 150 | #endif | 153 | #endif |
| 151 | 154 | ||
| 152 | /* Compare times T1 and T2. Value is 0 if T1 and T2 are the same. | 155 | /* Compare times T1 and T2. Value is 0 if T1 and T2 are the same. |