diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2022-03-19 12:35:04 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2022-03-19 12:48:53 -0700 |
commit | 0fed5610426e141b057fc359ab9a86b3ac7e9df5 (patch) | |
tree | 021be0834b7441bc4037d0c55046436a31742c3d /src/systime.h | |
parent | c3c5e50ba484eb849b9476ea9dba96a1a669be82 (diff) | |
download | emacs-0fed5610426e141b057fc359ab9a86b3ac7e9df5.tar.gz |
Remove unused fns/data and make fns static
* src/comp.c (saved_sigset, helper_temp_output_buffer_setup):
Remove; unused.
* src/comp.c (logfile, helper_link_table):
* src/fns.c (hashfn_equal, hashfn_eql):
* src/frame.c (frame_windows_min_size):
* src/gnutls.c (emacs_gnutls_global_init):
* src/minibuf.c (Vcommand_loop_level_list):
* src/syntax.c (syntax_code_spec):
* src/timefns.c (time_overflow):
* src/xterm.c (x_xrender_color_from_gc_foreground)
(x_display_set_last_user_time):
Now static, since it’s not used elsewhere.
* src/xterm.c (x_xrender_color_from_gc_foreground)
(x_xrender_color_from_gc_background): Move earlier to avoid
forward use.
(x_xrender_color_from_gc_foreground): Do not define unless
!defined USE_CAIRO && (RENDER_MAJOR > 0 || RENDER_MINOR >= 2),
since it’s not used otherwise.
Diffstat (limited to 'src/systime.h')
-rw-r--r-- | src/systime.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/systime.h b/src/systime.h index 41d728f1c29..75088bd4a62 100644 --- a/src/systime.h +++ b/src/systime.h @@ -91,7 +91,6 @@ extern Lisp_Object timespec_to_lisp (struct timespec); extern bool list4_to_timespec (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, struct timespec *); extern struct timespec lisp_time_argument (Lisp_Object); -extern AVOID time_overflow (void); extern double float_time (Lisp_Object); extern void init_timefns (void); extern void syms_of_timefns (void); |