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 36e438fe5a046f86649a1798bbe3632e154e8b17..644d06926ba30aff440371767874755ff8fc947b 100644
(file)
--- a/
lib/trackname.c
+++ b/
lib/trackname.c
@@
-15,10
+15,10
@@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
+/** @file lib/trackname.c
+ * @brief Track name calculation
+ */
#include "common.h"
#include "common.h"
-
-#include <pcre.h>
#include <fnmatch.h>
#include "trackname.h"
#include <fnmatch.h>
#include "trackname.h"
@@
-49,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;
}