chiark
/
gitweb
/
~mdw
/
disorder
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
4857234
)
Suppress no-collection log message for scratches
author
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 28 Nov 2009 11:05:36 +0000
(11:05 +0000)
committer
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 28 Nov 2009 11:05:36 +0000
(11:05 +0000)
lib/trackname.c
patch
|
blob
|
blame
|
history
diff --git
a/lib/trackname.c
b/lib/trackname.c
index 4e2e06e22e32487ceea76ac08e70750d710399da..aa11e2e819286fc38ec8ea84b354e44e47180918 100644
(file)
--- a/
lib/trackname.c
+++ b/
lib/trackname.c
@@
-51,6
+51,10
@@
const char *find_track_root(const char *track) {
const struct collection *c = find_track_collection(track);
if(c)
return c->root;
const struct collection *c = find_track_collection(track);
if(c)
return c->root;
+ /* Suppress this message for scratches */
+ for(int n = 0; n < config->scratch.n; ++n)
+ if(!strcmp(track, config->scratch.s[n]))
+ return 0;
disorder_error(0, "found track in no collection '%s'", track);
return 0;
}
disorder_error(0, "found track in no collection '%s'", track);
return 0;
}