projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fff78d
)
Add "\r" to utility.c:process_escape_sequence() (from email about
author
Eric Andersen
<andersen@codepoet.org>
Wed, 29 Nov 2000 23:07:57 +0000
(23:07 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Wed, 29 Nov 2000 23:07:57 +0000
(23:07 -0000)
"echo vs. optarg" from Larry Doolittle Tue, 28 Nov 2000 10:36:04 -0800)
-Erik
utility.c
patch
|
blob
|
history
diff --git
a/utility.c
b/utility.c
index c23ebcd96cb6deb5354df1fe0144aeb751dbf4e4..74e9332309a333fa4685fc2034784930eb643b58 100644
(file)
--- a/
utility.c
+++ b/
utility.c
@@
-1694,6
+1694,9
@@
char process_escape_sequence(char **ptr)
case 'n':
c = '\n';
break;
+ case 'r':
+ c = '\r';
+ break;
case 't':
c = '\t';
break;