diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-02 20:46:30 -0400 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-02 20:47:37 -0400 |
commit | 07e9281f7a17f47493a5f611f6c6ea40fa286614 (patch) | |
tree | 3080be522fc8d9220418e4842bc2f33bafa81636 /src/window.h | |
parent | 49e0c276b2e47bbc987d35dc73e80eb1efc99ef7 (diff) | |
download | emacs-07e9281f7a17f47493a5f611f6c6ea40fa286614.tar.gz emacs-07e9281f7a17f47493a5f611f6c6ea40fa286614.tar.bz2 emacs-07e9281f7a17f47493a5f611f6c6ea40fa286614.zip |
Port window changes to --enable-gcc-warnings
* src/window.c (sanitize_window_sizes): Return void.
This pacifies GCC, and no caller uses the return value anyway.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index 1fd19369c33..268e0f2c1b0 100644 --- a/src/window.h +++ b/src/window.h @@ -1105,7 +1105,7 @@ extern int window_body_width (struct window *w, bool); extern void temp_output_buffer_show (Lisp_Object); extern void replace_buffer_in_windows (Lisp_Object); extern void replace_buffer_in_windows_safely (Lisp_Object); -extern Lisp_Object sanitize_window_sizes (Lisp_Object, Lisp_Object); +extern void sanitize_window_sizes (Lisp_Object, Lisp_Object); /* This looks like a setter, but it is a bit special. */ extern void wset_buffer (struct window *, Lisp_Object); extern bool window_outdated (struct window *); |