summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-04-16 19:47:33 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-04-16 19:49:31 -0700
commitae712666bb25285ee321476fc043321ca42eb5a2 (patch)
tree672ebea4cc1378c7c0468de7bb45053f28a76f5d /src
parentac00a92e3df7111c0eb2c6456ae7df5850bfd8fa (diff)
downloademacs-ae712666bb25285ee321476fc043321ca42eb5a2.tar.gz
Port to GCC 5.3.1 20160406 (Red Hat 5.3.1-6)
* src/indent.c (Fvertical_motion): Pacify --enable-gcc-warnings when using the April 6 Fedora patch to GCC.
Diffstat (limited to 'src')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index d5162e35b52..0ef8903501d 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2036,7 +2036,7 @@ whether or not it is currently displayed in some window. */)
bool disp_string_at_start_p = 0;
ptrdiff_t nlines = XINT (lines);
int vpos_init = 0;
- double start_col;
+ double start_col IF_LINT (= 0);
int start_x IF_LINT (= 0);
int to_x = -1;