justify_format(), do_justify()
- Various fixes for starting blank spaces, spaces after
punctuation, & segfault with quoting strings (David Benbennick).
+ do_justify()
+ - Don't continue to justify string if it's indented more
+ (quoting wise) than the beginning of the justification.
help_init()
- Added message re: having multiple blank buffers (DLR).
main()
/* Put the whole paragraph into one big line. */
while (current->next && !isspace((int) current->next->data[0])
&& !strncmp(current->next->data, samecheck->data, qdepth)
+
+ /* Don't continue if current->next is indented more! */
+ && strncmp(¤t->next->data[qdepth], quotestr, strlen(quotestr))
&& !empty_line(¤t->next->data[qdepth])) {
filestruct *tmpnode = current->next;
int len = strlen(current->data);