]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove useless name_valid
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 3 Nov 2019 22:22:22 +0000 (23:22 +0100)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 3 Nov 2019 22:22:22 +0000 (23:22 +0100)
include/import/internals.h
src/import/internals.c

index 6723f5acfe8550d4ba5dc1fe8c04959fdc63f7b8..4ec5795487b664f707707dd02b63327314a633b0 100644 (file)
@@ -8,8 +8,6 @@
 
 ANN void gwi_body(const Gwi, const Class_Body);
 
-ANN m_bool name_valid(const Gwi, const m_str);
-
 ANN Exp make_exp(const Gwi gwi, const m_str type, const m_str name);
 
 ANN void gwi_reset(const Gwi gwi);
index 240f9d369a629645bdf4ff014b249e1dbb366882..72b1d2409f44eb344f2592b946b08a16aa1a4cae 100644 (file)
@@ -22,37 +22,6 @@ void gwi_body(const Gwi gwi, const Class_Body body) {
   gwi->body = body;
 }
 
-ANN m_bool _name_valid(const Gwi gwi, const m_str a) {
-  const m_uint len = strlen(a);
-  m_uint lvl = 0;
-  for(m_uint i = 0; i < len; i++) {
-    char c = a[i];
-    if((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')
-        || (c == '_') || (c >= '0' && c <= '9'))
-      continue;
-    if(c == '<') {
-      if(a[++i] != '~')
-        GWI_ERR_B(_("illegal templating in name '%s'."), a)
-      ++lvl;
-      ++i;
-      continue;
-    } else if(c == ',') {
-      if(!lvl)
-        GWI_ERR_B(_("illegal use of ',' outside of templating in name '%s'."), a)
-    } else if(c == '~') {
-      if(!lvl || a[++i] != '>')
-        GWI_ERR_B(_("illegal templating in name '%s'."), a)
-      --lvl;
-    } else
-      GWI_ERR_B(_("illegal character '%c' in name '%s'."), c, a)
-  }
-  return !lvl ? 1 : -1;
-}
-
-ANN m_bool name_valid(const Gwi gwi, const m_str a) {
-  return _name_valid(gwi, a[0] != '@' ? a : a + 1);
-}
-
 ANN void gwi_reset(const Gwi gwi) {
   if(gwi->ck)
     ck_clean(gwi);