Problem: Variables are set but not used.
Solution: Move the declarations to the block where they are used.
(closes #8527)
int negated;
int result;
int startc = -1;
- int endc = -1;
- int oldstartc = -1;
int save_prev_at_start = prev_at_start;
c = getchr();
* Failed to recognize a character class. Use the simple
* version that turns [abc] into 'a' OR 'b' OR 'c'
*/
- startc = endc = oldstartc = -1;
+ startc = -1;
negated = FALSE;
if (*regparse == '^') // negated range
{
emit_range = FALSE;
while (regparse < endp)
{
- oldstartc = startc;
+ int oldstartc = startc;
+
startc = -1;
got_coll_char = FALSE;
if (*regparse == '[')
// Previous char was '-', so this char is end of range.
if (emit_range)
{
- endc = startc;
+ int endc = startc;
+
startc = oldstartc;
if (startc > endc)
EMSG_RET_FAIL(_(e_reverse_range));
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 3125,
/**/
3124,
/**/