From: Eric Andersen Date: Fri, 18 May 2001 23:14:53 +0000 (-0000) Subject: Fix an escape problem in the docs. Some \n's didn't have the '\' X-Git-Tag: 0_52~160 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6197c51834c36a36cfc0b9a5cc146e6d79a9f5c9;p=oweals%2Fbusybox.git Fix an escape problem in the docs. Some \n's didn't have the '\' escaped, and so were messsing the out output. -Erik --- diff --git a/applets/usage.h b/applets/usage.h index 604661f78..9b83297e4 100644 --- a/applets/usage.h +++ b/applets/usage.h @@ -344,8 +344,8 @@ "Erik\n" \ "is\n" \ "cool\n" \ - "$ echo "Erik\nis\ncool"\n" \ - "Erik\nis\ncool\n" + "$ echo "Erik\\nis\\ncool"\n" \ + "Erik\\nis\\ncool\n" #define env_trivial_usage \ "[-iu] [-] [name=value]... [command]" diff --git a/include/usage.h b/include/usage.h index 604661f78..9b83297e4 100644 --- a/include/usage.h +++ b/include/usage.h @@ -344,8 +344,8 @@ "Erik\n" \ "is\n" \ "cool\n" \ - "$ echo "Erik\nis\ncool"\n" \ - "Erik\nis\ncool\n" + "$ echo "Erik\\nis\\ncool"\n" \ + "Erik\\nis\\ncool\n" #define env_trivial_usage \ "[-iu] [-] [name=value]... [command]" diff --git a/usage.h b/usage.h index 604661f78..9b83297e4 100644 --- a/usage.h +++ b/usage.h @@ -344,8 +344,8 @@ "Erik\n" \ "is\n" \ "cool\n" \ - "$ echo "Erik\nis\ncool"\n" \ - "Erik\nis\ncool\n" + "$ echo "Erik\\nis\\ncool"\n" \ + "Erik\\nis\\ncool\n" #define env_trivial_usage \ "[-iu] [-] [name=value]... [command]"