aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2016-07-04 12:47:41 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2016-07-04 15:46:13 +0300
commit50c258dd5f5cc08e1742dc52214abe92691859e7 (patch)
tree1b4e4c297970d61c7c8af64be4b7281ac255802f /src
parent161819277c47ee15494680bf7b58f5c1e01ab224 (diff)
downloadgrecs-50c258dd5f5cc08e1742dc52214abe92691859e7.tar.gz
grecs-50c258dd5f5cc08e1742dc52214abe92691859e7.tar.bz2
Fix prototypes.
Diffstat (limited to 'src')
-rw-r--r--src/lineacc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lineacc.c b/src/lineacc.c
index f1d6862..c5b4759 100644
--- a/src/lineacc.c
+++ b/src/lineacc.c
@@ -58,14 +58,14 @@ grecs_line_acc_grow(const char *text, size_t len)
{
grecs_txtacc_grow(line_acc, text, len);
}
/* Same, but unescapes the last character from text */
void
-grecs_line_acc_grow_unescape_last(char *text, size_t len,
- grecs_locus_t const *loc)
+grecs_line_acc_grow_unescape_last(char *text, size_t len,
+ grecs_locus_t const *loc)
{
grecs_txtacc_grow(line_acc, text, len - 2);
if (grecs_line_acc_grow_char_unescape(text[len - 1]) && loc)
grecs_warning(loc, 0,
_("unknown escape sequence: '\\%c'"),
text[len - 1]);

Return to:

Send suggestions and report system problems to the System administrator.