207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
*
*----------------------------------------------------------------------
*/
static void
DeleteHistoryObjs(
ClientData clientData,
Tcl_Interp *interp)
{
HistoryObjs *histObjsPtr = (HistoryObjs *)clientData;
TclDecrRefCount(histObjsPtr->historyObj);
TclDecrRefCount(histObjsPtr->addObj);
ckfree(histObjsPtr);
}
/*
|
|
>
|
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
*
*----------------------------------------------------------------------
*/
static void
DeleteHistoryObjs(
ClientData clientData,
Tcl_Interp *dummy)
{
HistoryObjs *histObjsPtr = (HistoryObjs *)clientData;
(void)dummy;
TclDecrRefCount(histObjsPtr->historyObj);
TclDecrRefCount(histObjsPtr->addObj);
ckfree(histObjsPtr);
}
/*
|