From 82f49c6a373f981a778f4d939ca2d47c031e0659 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 8 Jun 2016 10:33:34 -0700 Subject: Replace IF_LINT by NONVOLATILE and UNINIT Inspired by a suggestion from RMS in: http://bugs.gnu.org/23640#58 * .dir-locals.el (c-mode): Adjust to macro changes. * src/conf_post.h (NONVOLATILE, UNINIT): New macros (Bug#23640). (IF_LINT): Remove. All uses replaced by the new macros. --- src/composite.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/composite.c') diff --git a/src/composite.c b/src/composite.c index 49b00036361..bef1c5f7c3b 100644 --- a/src/composite.c +++ b/src/composite.c @@ -1308,7 +1308,8 @@ composition_reseat_it (struct composition_it *cmp_it, ptrdiff_t charpos, int composition_update_it (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff_t bytepos, Lisp_Object string) { - int i, c IF_LINT (= 0); + int i; + int c UNINIT; if (cmp_it->ch < 0) { -- cgit v1.2.1