aboutsummaryrefslogtreecommitdiff
path: root/src/dictionary.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dictionary.c')
-rw-r--r--src/dictionary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dictionary.c b/src/dictionary.c
index 7060cec..b7baf05 100644
--- a/src/dictionary.c
+++ b/src/dictionary.c
@@ -215,9 +215,9 @@ dictionary_quote_string (struct dictionary *dict, void *handle,
if (mp->quote)
return mp->quote (dict, handle, input, poutput, psize);
- size = wordsplit_quoted_length (input, 0, &quote);
+ size = wordsplit_c_quoted_length (input, 0, &quote);
output = xmalloc (size + 1);
- wordsplit_quote_copy (output, input, 0);
+ wordsplit_c_quote_copy (output, input, 0);
output[size] = 0;
*poutput = output;

Return to:

Send suggestions and report system problems to the System administrator.