diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-18 23:14:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-18 23:14:53 +0000 |
commit | 6197c51834c36a36cfc0b9a5cc146e6d79a9f5c9 (patch) | |
tree | 16f9f9bd660c984e1058d5d4c9108b00134b9fe0 /applets | |
parent | b6967635eb4893e95308f67e0684cfe7d7db0c05 (diff) | |
download | busybox-6197c51834c36a36cfc0b9a5cc146e6d79a9f5c9.tar.gz |
Fix an escape problem in the docs. Some \n's didn't have the '\'
escaped, and so were messsing the out output.
-Erik
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.h | 4 |
1 files changed, 2 insertions, 2 deletions
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]" |