chiark / gitweb /
disorder.h: more consistent approach to function attributes
[disorder] / lib / trackname.c
index 36e438fe5a046f86649a1798bbe3632e154e8b17..aa11e2e819286fc38ec8ea84b354e44e47180918 100644 (file)
@@ -15,7 +15,9 @@
  * 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 <pcre.h>
@@ -49,7 +51,11 @@ const char *find_track_root(const char *track) {
   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;
 }