fish: Correction for online help for 'edit' and 'more' commands.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 17 Sep 2010 13:35:43 +0000 (14:35 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 23 Oct 2010 11:19:52 +0000 (12:19 +0100)
This corrects commit b5c287bcd456bdb02d8ec0443483df34f4fd6b5d
and commit 639ca1828b167bf59353f0cd3c8c79c6289bbd5d.
(cherry picked from commit 3eb76554ef1f2f218f8920d9a8b8fb4ba6b21d66)

fish/fish.c

index 666b213..3dc380a 100644 (file)
@@ -1020,10 +1020,7 @@ display_builtin_command (const char *cmd)
               "    running \"cat\", editing locally, and then \"write-file\".\n"
               "\n"
               "    Normally it uses $EDITOR, but if you use the aliases\n"
-              "    \"vi\" or \"emacs\" you will get those editors.\n"
-              "\n"
-              "    NOTE: This will not work reliably for large files\n"
-              "    (> 2 MB) or binary files containing \\0 bytes.\n"));
+              "    \"vi\" or \"emacs\" you will get those editors.\n"));
     return 0;
   }
   else if (STRCASEEQ (cmd, "lcd")) {
@@ -1061,10 +1058,7 @@ display_builtin_command (const char *cmd)
               "    running \"cat\" and using the pager.\n"
               "\n"
               "    Normally it uses $PAGER, but if you use the alias\n"
-              "    \"less\" then it always uses \"less\".\n"
-              "\n"
-              "    NOTE: This will not work reliably for large files\n"
-              "    (> 2 MB) or binary files containing \\0 bytes.\n"));
+              "    \"less\" then it always uses \"less\".\n"));
     return 0;
   }
   else if (STRCASEEQ (cmd, "quit") ||