diff options
| author | Paul Eggert | 2018-04-28 16:49:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-04-28 16:56:48 -0700 |
| commit | 8c3215e7a47e3caaa005bf573765ed63e0739b89 (patch) | |
| tree | 0b90cacdef1a62ff888e92d0742b715ee69705ce /src/frame.c | |
| parent | 2b9ab8c8fba849da8bf2aa45e65b122bb937a6b3 (diff) | |
| download | emacs-8c3215e7a47e3caaa005bf573765ed63e0739b89.tar.gz emacs-8c3215e7a47e3caaa005bf573765ed63e0739b89.zip | |
Port --enable-gcc-warnings to GCC 8
* configure.ac: Do not use GCC 8’s new -Wcast-align flag.
* lib-src/ebrowse.c (xmalloc):
* lib-src/emacsclient.c (xmalloc, xstrdup):
* lib-src/etags.c (xmalloc):
* lib-src/make-docfile.c (xmalloc):
* lib-src/movemail.c (xmalloc):
* src/dispnew.c (new_glyph_pool):
* src/regex.c (xmalloc):
* src/term.c (tty_menu_create):
* src/tparam.h (tparam):
Use ATTRIBUTE_MALLOC. Also see GCC bug 85562.
* lib-src/emacsclient.c (fail):
Do not dereference a null pointer.
* src/frame.c (delete_frame):
Add a decl with UNINIT to work around GCC bug 85563.
* src/menu.h (finish_menu_items):
Do not use attribute const.
* src/regex.c (analyze_first): Use FALLTHROUGH, not a comment.
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index 86caa32615d..da82621b8a0 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1937,6 +1937,7 @@ delete_frame (Lisp_Object frame, Lisp_Object force) | |||
| 1937 | if (f == sf) | 1937 | if (f == sf) |
| 1938 | { | 1938 | { |
| 1939 | Lisp_Object tail; | 1939 | Lisp_Object tail; |
| 1940 | Lisp_Object frame1 UNINIT; /* This line works around GCC bug 85563. */ | ||
| 1940 | eassume (CONSP (Vframe_list)); | 1941 | eassume (CONSP (Vframe_list)); |
| 1941 | 1942 | ||
| 1942 | /* Look for another visible frame on the same terminal. | 1943 | /* Look for another visible frame on the same terminal. |