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 /src/buffer.c | |
| 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 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 534b9e40da3..af8c7324da1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -3907,7 +3907,8 @@ buffer. */) | |||
| 3907 | struct buffer *b, *ob = 0; | 3907 | struct buffer *b, *ob = 0; |
| 3908 | Lisp_Object obuffer; | 3908 | Lisp_Object obuffer; |
| 3909 | ptrdiff_t count = SPECPDL_INDEX (); | 3909 | ptrdiff_t count = SPECPDL_INDEX (); |
| 3910 | ptrdiff_t n_beg, n_end, o_beg IF_LINT (= 0), o_end IF_LINT (= 0); | 3910 | ptrdiff_t n_beg, n_end; |
| 3911 | ptrdiff_t o_beg UNINIT, o_end UNINIT; | ||
| 3911 | 3912 | ||
| 3912 | CHECK_OVERLAY (overlay); | 3913 | CHECK_OVERLAY (overlay); |
| 3913 | if (NILP (buffer)) | 3914 | if (NILP (buffer)) |