]> git.wh0rd.org Git - nano.git/commitdiff
Adjusting whitespace and bracings after the previous changes.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 6 Jul 2015 19:17:27 +0000 (19:17 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 6 Jul 2015 19:17:27 +0000 (19:17 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5286 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/help.c
src/text.c

index 9e399bf37abeea447017f1f8c66a2b8188a82753..efcca7c40afc60908cb3f9f811917d584d242d5a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@
        the end-of-file to a less frequently travelled path.
        * src/text.c (do_deletion): If a Backspace happens at the end-of-file,
        don't remove and then re-add the magic line; just add an undo item.
+       * src/help.c (help_init), src/text.c (do_undo): Adjust whitespace and
+       bracing after the previous changes.
 
 GNU nano 2.4.2 - 2015.07.05
 2015-06-28  Benno Schulenberg  <bensberg@justemail.net>
index 1d4d758ce690611c560feae0d9cc57913bd5c00c..098d33d964cfaceb67947b07accc26ef0e01ca6a 100644 (file)
@@ -448,22 +448,20 @@ void help_init(void)
        int maximum = 0, counter = 0;
 
        /* First see how many toggles there are. */
-       for (s = sclist; s != NULL; s = s->next) {
+       for (s = sclist; s != NULL; s = s->next)
           maximum = (s->toggle && s->ordinal > maximum) ? s->ordinal : maximum;
-       }
 
        /* Now show them in the original order. */
        while (counter < maximum) {
            counter++;
-           for (s = sclist; s != NULL; s = s->next) {
+           for (s = sclist; s != NULL; s = s->next)
                if (s->toggle && s->ordinal == counter) {
-               ptr += sprintf(ptr, "%s\t\t%s %s\n", (s->menu == MMAIN ? s->keystr : ""),
+                   ptr += sprintf(ptr, "%s\t\t%s %s\n", (s->menu == MMAIN ? s->keystr : ""),
                                 _(flagtostr(s->toggle)), _("enable/disable"));
-           if (s->toggle == NO_COLOR_SYNTAX || s->toggle == TABS_TO_SPACES)
-               ptr += sprintf(ptr, "\n");
+                   if (s->toggle == NO_COLOR_SYNTAX || s->toggle == TABS_TO_SPACES)
+                       ptr += sprintf(ptr, "\n");
                    break;
-       }
-           }
+               }
        }
     }
 
index 7fc19761cbe20374867d4c90c497b693f4c81474..97e39be302a27aaf85bf790fb4cdcf52d766ba4d 100644 (file)
@@ -502,17 +502,15 @@ void do_undo(void)
            goto_line_posx(openfile->filebot->lineno, 0);
            break;
        }
-       {/*FIXME: unindent*/
-           t = make_new_node(f);
-           t->data = mallocstrcpy(NULL, u->strdata);
-           data = mallocstrncpy(NULL, f->data, u->mark_begin_x + 1);
-           data[u->mark_begin_x] = '\0';
-           free(f->data);
-           f->data = data;
-           splice_node(f, t, f->next);
-           if (f == openfile->filebot)
-               openfile->filebot = t;
-       }
+       t = make_new_node(f);
+       t->data = mallocstrcpy(NULL, u->strdata);
+       data = mallocstrncpy(NULL, f->data, u->mark_begin_x + 1);
+       data[u->mark_begin_x] = '\0';
+       free(f->data);
+       f->data = data;
+       splice_node(f, t, f->next);
+       if (f == openfile->filebot)
+           openfile->filebot = t;
        goto_line_posx(u->lineno, u->begin);
        break;
     case CUT_EOF: