Differences From Artifact [ba99704a3e]:
- File tclreadline.c — part of check-in [51f17cd0ae] at 2014-03-17 21:55:02 on branch origin/devel — Style/cosmetic changes to C files (user: quentin@minster.io size: 27222)
To Artifact [c8d2f7cde1]:
- File tclreadline.c — part of check-in [89a657e91b] at 2016-07-15 17:04:45 on branch origin/devel — prevent background results leaking into input (user: aspect size: 27284)
| ︙ | |||
480 481 482 483 484 485 486 487 488 489 490 491 492 493 | 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | + + + |
#endif
}
}
static void
TclReadlineLineCompleteHandler(char* ptr)
{
Tcl_ResetResult(tclrl_interp); /* clear result space */
if (!ptr) { /* <c-d> */
TclReadlineTerminate(LINE_EOF);
} else {
/**
|
| ︙ |