listInt.h: correct prototype names

My best guess:
 LispDispatch => TxLispDispatch
 LispModifyFrame => LispModifyBinding
This commit is contained in:
Darryl L. Miles 2025-07-18 15:33:33 +01:00 committed by R. Timothy Edwards
parent 9c33f1d460
commit a7fed2b744
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ typedef struct Sexp {
/*
* Internal commands
*/
extern void LispDispatch();
extern bool TxLispDispatch();
extern LispObj *LispNewObj ();
extern LispObj *LispCopyObj ();
@ -136,7 +136,7 @@ extern void LispGCRemoveSexp ();
extern LispObj *LispFrameLookup ();
extern char *LispFrameRevLookup ();
extern void LispFrameInit ();
extern int LispModifyFrame ();
extern int LispModifyBinding ();
extern void LispAddBinding ();
extern Sexp *LispFramePush ();