diff --git a/ChangeLog b/ChangeLog
index a8666f9a4bac43e878850dbc67258257e4220fb9..335bd45192830b48f7c4a905503d92e1dbba9b65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,7 @@
 	* doc/man/nano{.1,rc.5} - Slightly improve formatting and wording.
 	* doc/{texinfo/nano.texi,man/nanorc.5} - Add some missing options
 	to the texinfo documentation, and improve alphabetization a bit.
+	* src/nano.c (usage) - Don't mention --softwrap in tiny version.
 
 2014-03-01 Chris Allegretta <chrisa@asty.org>
 	* global.c (shortcut_init) - fix an issue with the split
diff --git a/src/nano.c b/src/nano.c
index 2d8b08156ff1d2c053399a3dfe778576abba1416..942a213140c5caba7cf4140a9c4fb08c152db6bb 100644
--- a/src/nano.c
+++ b/src/nano.c
@@ -942,7 +942,9 @@ void usage(void)
 #endif
     print_opt("-x", "--nohelp", N_("Don't show the two help lines"));
     print_opt("-z", "--suspend", N_("Enable suspension"));
+#ifndef NANO_TINY
     print_opt("-$", "--softwrap", N_("Enable soft line wrapping"));
+#endif
 
     /* This is a special case. */
     print_opt("-a, -b, -e,", "", NULL);