Diff for /freem/src/symtab_bltin.c between versions 1.15 and 1.16

version 1.15, 2025/05/18 18:15:38 version 1.16, 2026/01/07 19:51:33
Line 24 Line 24
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   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   *   Revision 1.15  2025/05/18 18:15:38  snw
  *   Add ZEDIT command for editing routines   *   Add ZEDIT command for editing routines
  *   *
Line 401  void symtab_bltin (short action, char *k Line 404  void symtab_bltin (short action, char *k
     }      }
           
     if (action == kill_all) goto no_with;      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, "^$", 2) == 0) goto no_with;
     if (strncmp (key, "$", 1) == 0) goto no_with;      if (strncmp (key, "$", 1) == 0) goto no_with;
           

Removed from v.1.15  
changed lines
  Added in v.1.16


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>