comment fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1736 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-05-13 23:19:01 +00:00
parent 68a44a4905
commit 021960dfb7
1 changed files with 2 additions and 1 deletions

View File

@ -1930,7 +1930,8 @@ int justify_format(int changes_allowed, filestruct *line, size_t skip)
return 1;
*front = ' ';
}
/* these tests are safe since line->data + skip is not a space */
/* These tests are safe since line->data + skip is not a
* space. */
if ((*front == '\0' || *front == ' ') && *(front - 1) == ' ') {
const char *bob = front - 2;