projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5318db5
)
(quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '.
author
Jim Meyering
<jim@meyering.net>
Mon, 11 Jan 1999 03:11:15 +0000
(
03:11
+0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 11 Jan 1999 03:11:15 +0000
(
03:11
+0000)
Suggestion from Paul Eggert.
lib/quotearg.c
patch
|
blob
|
history
diff --git
a/lib/quotearg.c
b/lib/quotearg.c
index baf28c6106ac48f83eeff4ef46ceb2d242a2ee43..e1a6f9356ff694cca40941674d001027c05ace8a 100644
(file)
--- a/
lib/quotearg.c
+++ b/
lib/quotearg.c
@@
-258,11
+258,6
@@
quotearg_buffer (char *buffer, size_t buffersize,
case '\t': c = 't'; goto store_escape;
case '\v': c = 'v'; goto store_escape;
- case ' ':
- if (quoting_style == escape_quoting_style)
- goto store_escape;
- break;
-
case '"':
if (quoting_style == c_quoting_style)
goto store_escape;