Commit 7b918c76 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

add missing blank lines

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2368 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -1069,6 +1069,7 @@ void do_find_bracket(void)
}
assert(strlen(brackets) % 2 == 0);
wanted_ch = brackets[(strlen(brackets) - 1) - (pos - brackets)];
current_save = current;
......@@ -1079,7 +1080,6 @@ void do_find_bracket(void)
/* Apparent near redundancy with regexp_pat[] here is needed.
* "[][]" works, "[[]]" doesn't. */
if (pos < brackets + (strlen(brackets) / 2)) {
/* On a left bracket. */
regexp_pat[1] = wanted_ch;
......@@ -1093,6 +1093,7 @@ void do_find_bracket(void)
}
regexp_init(regexp_pat);
/* We constructed regexp_pat to be a valid expression. */
assert(regexp_compiled);
......
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