From: Benno Schulenberg Date: Sun, 16 Aug 2015 13:05:35 +0000 (+0000) Subject: Removing some duplication in the initialization of a new openfile node. X-Git-Tag: v2.5.0~98 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=149b1fe43960bb1d68fd7f8a752984ed7fa29820;p=nano.git Removing some duplication in the initialization of a new openfile node. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5364 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 91ac5811..c3290e02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ so for determining the length of the current line, don't start at that location but at the beginning. This fixes Savannah bug #45770. * src/help.c (help_line_len): Rename and reorder most of it. + * src/nano.c (make_new_opennode), src/files.c (initialize_buffer): + Remove some duplication in the initialization of a new openfile node. 2015-08-13 Benno Schulenberg * src/search.c (do_find_bracket): Remove mistaken comparison between diff --git a/src/files.c b/src/files.c index c93ef39c..2c4fe297 100644 --- a/src/files.c +++ b/src/files.c @@ -78,6 +78,7 @@ void initialize_buffer(void) openfile->undotop = NULL; openfile->current_undo = NULL; + openfile->last_action = OTHER; openfile->current_stat = NULL; openfile->lock_filename = NULL; diff --git a/src/nano.c b/src/nano.c index db88a263..903e2ba4 100644 --- a/src/nano.c +++ b/src/nano.c @@ -525,11 +525,6 @@ openfilestruct *make_new_opennode(void) newnode->filebot = NULL; newnode->edittop = NULL; newnode->current = NULL; -#ifndef NANO_TINY - newnode->current_stat = NULL; - newnode->last_action = OTHER; - newnode->lock_filename = NULL; -#endif return newnode; }