--- freem/src/symtab_bltin.c 2025/05/18 18:15:38 1.15 +++ freem/src/symtab_bltin.c 2026/01/07 19:51:33 1.16 @@ -1,5 +1,5 @@ /* - * $Id: symtab_bltin.c,v 1.15 2025/05/18 18:15:38 snw Exp $ + * $Id: symtab_bltin.c,v 1.16 2026/01/07 19:51:33 snw Exp $ * FreeM local system table and user-defined special variable table * * @@ -24,6 +24,9 @@ * along with FreeM. If not, see . * * $Log: symtab_bltin.c,v $ + * Revision 1.16 2026/01/07 19:51:33 snw + * Fix segfault in reverse $QUERY + * * Revision 1.15 2025/05/18 18:15:38 snw * Add ZEDIT command for editing routines * @@ -401,7 +404,7 @@ void symtab_bltin (short action, char *k } if (action == kill_all) goto no_with; - if ((stlen (key) >= 5) && (strncmp (key, "%INT.", 5) == 0)) goto no_with; + if ((stlen (key) >= 5) && (strncmp (key, "%INT", 4) == 0)) goto no_with; if (strncmp (key, "^$", 2) == 0) goto no_with; if (strncmp (key, "$", 1) == 0) goto no_with;