Commit 0517c482 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

typo fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2756 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -600,7 +600,7 @@ int replace_regexp(char *string, bool create)
if (create)
*string++ = *c;
c++;
new_size++;
new_line_size++;
} else {
size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
......@@ -608,7 +608,7 @@ int replace_regexp(char *string, bool create)
c += 2;
/* But add the length of the subexpression to new_size. */
new_size += i;
new_line_size += i;
/* And if create is TRUE, append the result of the
* subexpression match to the new line. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment