Added multi buffer (load on insert) code.  This wont intoduce any bugs ;-)


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@722 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
diff --git a/rcfile.c b/rcfile.c
index b0b0c4e..3634210 100644
--- a/rcfile.c
+++ b/rcfile.c
@@ -39,7 +39,7 @@
 #define _(string) (string)
 #endif
 
-#define NUM_RCOPTS 14
+#define NUM_RCOPTS 15
 /* Static stuff for the nanorc file */
 rcoption rcopts[NUM_RCOPTS] = 
 {
@@ -60,7 +60,8 @@
 {"view", VIEW_MODE},
 {"nowrap", NO_WRAP}, 
 {"nohelp", NO_HELP}, 
-{"suspend", SUSPEND}};
+{"suspend", SUSPEND},
+{"loadoninsert", LOADONINSERT}};
 
 /* We have an error in some part of the rcfile; put it on stderr and
   make the user hit return to continue starting up nano */