diff options
| author | Paul Eggert | 2016-02-23 09:42:05 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-02-23 09:42:28 -0800 |
| commit | 82848cf689c24a8bc635449846250ea6edb757c4 (patch) | |
| tree | 4263b19e46cf62711d40ec14ccd3173225d48f2a /src/window.h | |
| parent | f4152efd2f7db87134e5e1c50e312a431e81db23 (diff) | |
| download | emacs-82848cf689c24a8bc635449846250ea6edb757c4.tar.gz emacs-82848cf689c24a8bc635449846250ea6edb757c4.zip | |
Minor cleanups for async DNS etc.
* src/frame.h (FRAME_WINDOW_CONFIGURATION_CHANGED):
Omit unnecessary parens.
* src/gnutls.c (gnutls_try_handshake, emacs_gnutls_deinit)
(gnutls_verify_boot):
Use bool for boolean.
(ATTRIBUTE_FORMAT_PRINTF): Add printf attribute.
* src/process.c (free_dns_request, Fmake_network_process):
Allocate and free async request control block all in one go.
(set_network_socket_coding_system, finish_after_tls_connection)
(connect_network_socket):
Now static.
(conv_numerical_to_lisp): 2nd arg is now int, not unsigned.
(Fmake_network_process): Use list1 for brevity.
(wait_for_socket_fds): 2nd arg is now const ptr.
* src/process.h (struct Lisp_Process.dns_request):
Now struct gaicb *, not struct gaicb **, since there was always
exactly one. All uses changed.
* src/window.c, src/window.h (run_window_configuration_change_hook):
Now static.
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index a4d4dfe3ff4..2c030335792 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -1020,7 +1020,6 @@ extern void grow_mini_window (struct window *, int, bool); | |||
| 1020 | extern void shrink_mini_window (struct window *, bool); | 1020 | extern void shrink_mini_window (struct window *, bool); |
| 1021 | extern int window_relative_x_coord (struct window *, enum window_part, int); | 1021 | extern int window_relative_x_coord (struct window *, enum window_part, int); |
| 1022 | 1022 | ||
| 1023 | void run_window_configuration_change_hook (struct frame *f); | ||
| 1024 | void run_window_size_change_functions (Lisp_Object); | 1023 | void run_window_size_change_functions (Lisp_Object); |
| 1025 | 1024 | ||
| 1026 | /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed | 1025 | /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed |