diff options
| author | Eli Zaretskii | 2019-04-24 15:18:18 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-04-24 15:18:18 +0300 |
| commit | a2e9d3e33508473547ffa7c3f800fe0e3c5b5c1c (patch) | |
| tree | d65818c612b93bc090425d9af35503e7f6641ae0 /src | |
| parent | b6d8d34aede02a6af7a614f32b86292ee4ba1757 (diff) | |
| download | emacs-a2e9d3e33508473547ffa7c3f800fe0e3c5b5c1c.tar.gz emacs-a2e9d3e33508473547ffa7c3f800fe0e3c5b5c1c.zip | |
Fix a typo in a recent commit
* src/timefns.c (timespec_to_lisp): Fix a typo in function
definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/timefns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timefns.c b/src/timefns.c index 71280aea06a..5005c73b7fc 100644 --- a/src/timefns.c +++ b/src/timefns.c | |||
| @@ -532,7 +532,7 @@ make_lisp_time (struct timespec t) | |||
| 532 | } | 532 | } |
| 533 | 533 | ||
| 534 | /* Return (TICKS . HZ) for time T. */ | 534 | /* Return (TICKS . HZ) for time T. */ |
| 535 | struct Lisp_Object | 535 | Lisp_Object |
| 536 | timespec_to_lisp (struct timespec t) | 536 | timespec_to_lisp (struct timespec t) |
| 537 | { | 537 | { |
| 538 | return Fcons (timespec_ticks (t), timespec_hz); | 538 | return Fcons (timespec_ticks (t), timespec_hz); |