From: Eli Zaretskii Date: Sun, 17 Sep 2017 16:50:43 +0000 (+0300) Subject: Avoid GCC 7 compilation warning in eval.c X-Git-Tag: emacs-26.0.90~149 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=411bec82c4;p=emacs.git Avoid GCC 7 compilation warning in eval.c * src/eval.c (push_handler_nosignal): Use CACHEABLE to work around GCC compilation warning. Suggested by Paul Eggert in http://lists.gnu.org/archive/html/emacs-devel/2017-09/msg00492.html. --- diff --git a/src/eval.c b/src/eval.c index 62e219631db..39d78364d5f 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1428,7 +1428,7 @@ push_handler (Lisp_Object tag_ch_val, enum handlertype handlertype) struct handler * push_handler_nosignal (Lisp_Object tag_ch_val, enum handlertype handlertype) { - struct handler *c = handlerlist->nextfree; + struct handler *CACHEABLE c = handlerlist->nextfree; if (!c) { c = malloc (sizeof *c);