chiark
/
gitweb
/
~mdw
/
fwd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d105b00
)
conf.c (conf_fname): Don't make `,' a filename character.
author
Mark Wooding
<mdw@distorted.org.uk>
Fri, 13 May 2011 19:28:12 +0000
(20:28 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Fri, 13 May 2011 19:28:12 +0000
(20:28 +0100)
This wasn't documented anyway, and it conflicts with the use of `,' as a
filename separator in the file endpoint definition syntax.
conf.c
patch
|
blob
|
blame
|
history
diff --git
a/conf.c
b/conf.c
index 73cb20eea056cba4fae741d9625841fe002b8f69..70b6506a859b33b4c6c5d1af5cd6b80796bd8e0b 100644
(file)
--- a/
conf.c
+++ b/
conf.c
@@
-381,7
+381,7
@@
void conf_name(scanner *sc, char delim, dstr *d)
void conf_fname(scanner *sc, dstr *d)
{
- const char fnchars[] = ".-+
,
";
+ const char fnchars[] = ".-+";
conf_undelim(sc, fnchars, fnchars);
conf_name(sc, '/', d);
conf_undelim(sc, 0, 0);