make sure the "historylog" option isn't included in tiny mode


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1542 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
diff --git a/nano.c b/nano.c
index cba0ef6..0a5e607 100644
--- a/nano.c
+++ b/nano.c
@@ -630,7 +630,9 @@
     print1opt("-F", "--multibuffer", _("Enable multiple file buffers"));
 #endif
 #ifdef ENABLE_NANORC
+#ifndef NANO_SMALL
     print1opt("-H", "--historylog", _("Log & read search/replace string history"));
+#endif
     print1opt("-I", "--ignorercfiles", _("Don't look at nanorc files"));
 #endif
 #ifndef NANO_SMALL
@@ -3128,7 +3130,9 @@
 	{"multibuffer", 0, 0, 'F'},
 #endif
 #ifdef ENABLE_NANORC
+#ifndef NANO_SMALL
 	{"historylog", 0, 0, 'H'},
+#endif
 	{"ignorercfiles", 0, 0, 'I'},
 #endif
 #ifndef DISABLE_JUSTIFY
@@ -3223,9 +3227,11 @@
 	    break;
 #endif
 #ifdef ENABLE_NANORC
+#ifndef NANO_SMALL
 	case 'H':
 	    SET(HISTORYLOG);
 	    break;
+#endif
 	case 'I':
 	    SET(NO_RCFILE);
 	    break;