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

more comment fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3150 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
...@@ -1082,11 +1082,11 @@ bool find_paragraph(size_t *const quote, size_t *const par) ...@@ -1082,11 +1082,11 @@ bool find_paragraph(size_t *const quote, size_t *const par)
/* Now current is the first line of the paragraph. Set quote_len to /* Now current is the first line of the paragraph. Set quote_len to
* the quotation length of that line, and set par_len to the number * the quotation length of that line, and set par_len to the number
* of lines in this paragraph. If, while calculating the latter, we * of lines in this paragraph. If, while calculating the latter, we
* end up past the beginning of the line, it means that we're at the * end up past the beginning of the line, it means that we're on the
* last line of the file, and the file doesn't end in a newline. If * last line of the file, and the file doesn't end in a newline. If
* we were there before moving, there aren't any paragraphs left, so * we were at the same place before, there aren't any paragraphs
* get out. If we weren't there before moving, it means that the * left, so get out. Otherwise, the last line of the file is part
* line is part of this paragraph. */ * of this paragraph. */
quote_len = quote_length(openfile->current->data); quote_len = quote_length(openfile->current->data);
current_save = openfile->current; current_save = openfile->current;
current_x_save = openfile->current_x; current_x_save = openfile->current_x;
......
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