diff options
| author | Paul Eggert | 2016-06-08 10:33:34 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-06-08 11:50:42 -0700 |
| commit | 82f49c6a373f981a778f4d939ca2d47c031e0659 (patch) | |
| tree | e84afa8e7af336f15f37789fbf23f4ec62905790 /lib-src | |
| parent | 7715ee54b3588cfdef03b5d45aaf44b73b422ec6 (diff) | |
| download | emacs-82f49c6a373f981a778f4d939ca2d47c031e0659.tar.gz emacs-82f49c6a373f981a778f4d939ca2d47c031e0659.zip | |
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 'lib-src')
| -rw-r--r-- | lib-src/make-docfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 32e3817a465..f463f13699b 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -491,7 +491,7 @@ write_c_args (char *func, char *buf, int minargs, int maxargs) | |||
| 491 | { | 491 | { |
| 492 | char *p; | 492 | char *p; |
| 493 | bool in_ident = false; | 493 | bool in_ident = false; |
| 494 | char *ident_start IF_LINT (= NULL); | 494 | char *ident_start UNINIT; |
| 495 | ptrdiff_t ident_length = 0; | 495 | ptrdiff_t ident_length = 0; |
| 496 | 496 | ||
| 497 | fputs ("(fn", stdout); | 497 | fputs ("(fn", stdout); |