a few more #ifdef tweaks, plus a few cosmetic fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1899 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
diff --git a/src/nano.c b/src/nano.c
index 10153ca..07ca0c1 100644
--- a/src/nano.c
+++ b/src/nano.c
@@ -1879,8 +1879,9 @@
 
 #ifndef DISABLE_JUSTIFY
 /* justify_format() replaces Tab by Space and multiple spaces by 1
- * (except it maintains 2 after a . ! or ?).  Note the terminating \0
- * counts as a space.
+ * (except it maintains 2 after a character in punct followed by a
+ * character in brackets).  Note that the terminating \0 counts as a
+ * space.
  *
  * justify_format() might make line->data shorter, and change the actual
  * pointer with null_at().
@@ -2257,7 +2258,7 @@
 	while (current->prev != NULL &&	quotes_match(current->data,
 		quote_len, current->prev->data)) {
 	    size_t temp_id_len =
-			indent_length(current->prev->data + quote_len);
+		indent_length(current->prev->data + quote_len);
 		/* The indentation length of the previous line. */
 
 	    /* Is this line the beginning of a paragraph, according to