diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-06-08 10:33:34 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-06-08 11:50:42 -0700 |
commit | 82f49c6a373f981a778f4d939ca2d47c031e0659 (patch) | |
tree | e84afa8e7af336f15f37789fbf23f4ec62905790 /src/gtkutil.c | |
parent | 7715ee54b3588cfdef03b5d45aaf44b73b422ec6 (diff) | |
download | emacs-82f49c6a373f981a778f4d939ca2d47c031e0659.tar.gz |
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.
Diffstat (limited to 'src/gtkutil.c')
-rw-r--r-- | src/gtkutil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index e791e6ac317..88e6d30bd9a 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -1829,7 +1829,8 @@ xg_get_file_with_chooser (struct frame *f, { char msgbuf[1024]; - GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL); + GtkWidget *filewin, *wtoggle, *wbox; + GtkWidget *wmessage UNINIT; GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)); GtkFileChooserAction action = (mustmatch_p ? GTK_FILE_CHOOSER_ACTION_OPEN : |