diff --git a/ChangeLog b/ChangeLog
index fb40024362efb578e091e945f269f236f4d3fea4..dca1f3fc6b2bc900f8b11299e4c113c41c0923db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@ CVS code -
 	- Capitalize Meta altkeys.
   main()
 	- Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
+  usage()
+	- Add -N to short format (no GETOPT_LONG) strings (noticed by 
+	  Jordi).
 - rcfile.c:
   parse_rcfile()
 	- Don't use i for both for loop and atoi(), fixes lots of 
diff --git a/nano.c b/nano.c
index 9042dbb22fd6dacc7e9792ba0abb3ca6400a1737..496131020d1dc931bf5d0ec9c110c42c1c52dfd8 100644
--- a/nano.c
+++ b/nano.c
@@ -511,6 +511,7 @@ void usage(void)
     printf(_(" -K		Use alternate keypad routines\n"));
 #ifndef NANO_SMALL
     printf(_(" -M 		Write file in Mac format\n"));
+    printf(_(" -N 		Don't convert files from DOS/Mac format\n"));
 #endif
 #ifndef DISABLE_JUSTIFY
     printf(_(" -Q [str] 	Quoting string, default \"> \"\n"));