aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/lex.l3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c26fbe..495844e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-07-03 Sergey Poznyakoff <gray@gnu.org.ua>
+
+ Bugfix.
+
+ * src/lex.l (expand_char): Don't return any value.
+
2014-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
Optionally install compatibility headers into a separate directory.
diff --git a/src/lex.l b/src/lex.l
index abb9047..4fabb07 100644
--- a/src/lex.l
+++ b/src/lex.l
@@ -514,7 +514,8 @@ expand_char (int c)
{
if (p->cache)
free (p->cache);
- return p->fun (p);
+ p->fun (p);
+ return;
}
}
}

Return to:

Send suggestions and report system problems to the System administrator.