aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l7
1 files changed, 3 insertions, 4 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 9f4bf5c8..14eb73e4 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -223,12 +223,11 @@ options {/* EMPTY */}
%%
-void escapes(cp, tp)
-/* process standard C-style escape sequences in a string,
+/** process standard C-style escape sequences in a string,
* this can never lengthen the output, so cp and tp may overlap as long
* as cp >= tp. */
-const char *cp; /* source string with escapes */
-char *tp; /* target buffer for digested string */
+void escapes(const char *cp /** source string with escapes */,
+ char *tp /** target buffer for digested string */)
{
while (*cp)
{