]> www.ginac.de Git - ginac.git/blobdiff - ginsh/ginsh_parser.yy
- architectural checkpoint for zeta-function.
[ginac.git] / ginsh / ginsh_parser.yy
index fdc9ac30fd78c623dad1fde640c705af5bf381eb..f8702d2aea4b7640eb24c5933353ccc4b8b6bc24 100644 (file)
@@ -479,7 +479,7 @@ static ex f_dummy(const exprseq &e)
 // Table for initializing the "fcns" map
 struct fcn_init {
        const char *name;
 // Table for initializing the "fcns" map
 struct fcn_init {
        const char *name;
-       const fcn_desc &desc;
+       const fcn_desc desc;
 };
 
 static const fcn_init builtin_fcns[] = {
 };
 
 static const fcn_init builtin_fcns[] = {
@@ -531,7 +531,7 @@ static const fcn_init builtin_fcns[] = {
        {"transpose", fcn_desc(f_transpose, 1)},
        {"unassign", fcn_desc(f_unassign, 1)},
        {"unit", fcn_desc(f_unit, 2)},
        {"transpose", fcn_desc(f_transpose, 1)},
        {"unassign", fcn_desc(f_unassign, 1)},
        {"unit", fcn_desc(f_unit, 2)},
-       {NULL, fcn_desc(f_unit, 0)}     // End marker
+       {NULL, fcn_desc(f_dummy, 0)}    // End marker
 };
 
 
 };