From: David Lawrence Ramsey Date: Wed, 7 Jul 2004 13:57:52 +0000 (+0000) Subject: add missing part of DB's patch to convert flags and related variables X-Git-Tag: v1.3.4~62 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=962cc746209cf27e5fea0d63310c69de66c21194;p=nano.git add missing part of DB's patch to convert flags and related variables into longs: file_flags should be declared as a long instead of an int git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1844 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/nano.h b/src/nano.h index 669c172c..26ef24b5 100644 --- a/src/nano.h +++ b/src/nano.h @@ -160,7 +160,7 @@ typedef struct openfilestruct { * position. */ int file_current_y; /* Current file's y-coordinate * position. */ - int file_flags; /* Current file's flags: modification + long file_flags; /* Current file's flags: modification * status (and marking status, if * available). */ int file_placewewant; /* Current file's place we want. */