mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-09 03:02:27 +03:00
tweaks: adjust the indentation after the previous change
This commit is contained in:
parent
265d3245af
commit
56d98052d1
26
src/rcfile.c
26
src/rcfile.c
@ -1061,22 +1061,22 @@ void parse_rcfile(FILE *rcstream, bool just_syntax, bool intros_only)
|
||||
opensyntax = TRUE;
|
||||
drop_open = TRUE;
|
||||
} else {
|
||||
newitem = nmalloc(sizeof(augmentstruct));;
|
||||
newitem = nmalloc(sizeof(augmentstruct));;
|
||||
|
||||
newitem->filename = strdup(nanorc);
|
||||
newitem->lineno = lineno;
|
||||
newitem->data = argument;
|
||||
newitem->next = NULL;
|
||||
newitem->filename = strdup(nanorc);
|
||||
newitem->lineno = lineno;
|
||||
newitem->data = argument;
|
||||
newitem->next = NULL;
|
||||
|
||||
if (sint->augmentations != NULL) {
|
||||
extra = sint->augmentations;
|
||||
while (extra->next != NULL)
|
||||
extra = extra->next;
|
||||
extra->next = newitem;
|
||||
} else
|
||||
sint->augmentations = newitem;
|
||||
if (sint->augmentations != NULL) {
|
||||
extra = sint->augmentations;
|
||||
while (extra->next != NULL)
|
||||
extra = extra->next;
|
||||
extra->next = newitem;
|
||||
} else
|
||||
sint->augmentations = newitem;
|
||||
|
||||
continue;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user