chiark
/
gitweb
/
~mdw
/
disorder
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lib/configuration.c, lib/home.c: Introduce environment variables.
[disorder]
/
lib
/
trackname.c
diff --git
a/lib/trackname.c
b/lib/trackname.c
index fa40c3b840a567ec722d49d9edd4b4827e55344c..644d06926ba30aff440371767874755ff8fc947b 100644
(file)
--- a/
lib/trackname.c
+++ b/
lib/trackname.c
@@
-19,8
+19,6
@@
* @brief Track name calculation
*/
#include "common.h"
* @brief Track name calculation
*/
#include "common.h"
-
-#include <pcre.h>
#include <fnmatch.h>
#include "trackname.h"
#include <fnmatch.h>
#include "trackname.h"
@@
-51,7
+49,11
@@
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;
- error(0, "found track in no collection '%s'", track);
+ /* 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;
}
return 0;
}