Commit d41b4689 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2828 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -2980,7 +2980,7 @@ void do_para_end(bool allow_update)
current = current->next;
while (current->next != NULL && inpar(current->next) &&
!begpar(current->next)) {
!begpar(current->next)) {
current = current->next;
current_y++;
}
......@@ -3111,7 +3111,7 @@ bool find_paragraph(size_t *const quote, size_t *const par)
* is in a paragraph and it isn't the first line of that paragraph,
* move back to the first line. */
if (!inpar(current)) {
filestruct *current_save = current;
current_save = current;
do_para_end(FALSE);
if (current == current_save || !inpar(current->prev))
......
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