commit | 6197c51834c36a36cfc0b9a5cc146e6d79a9f5c9 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Fri May 18 23:14:53 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Fri May 18 23:14:53 2001 +0000 |
tree | 16f9f9bd660c984e1058d5d4c9108b00134b9fe0 | |
parent | b6967635eb4893e95308f67e0684cfe7d7db0c05 [diff] [blame] |
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/usage.h b/usage.h index 604661f..9b83297 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]"