commit 021960dfb777b902c7664b4f52b46574ac95abdd
parent 68a44a4905a74d2df951b8922a19babf8db064ca
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 13 May 2004 23:19:01 +0000
comment fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1736 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/nano.c b/src/nano.c
@@ -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;