diff options
author | fvogel <fvogel@noemail.net> | 2015-12-26 20:52:21 (GMT) |
---|---|---|
committer | fvogel <fvogel@noemail.net> | 2015-12-26 20:52:21 (GMT) |
commit | e126c00b0cbde672f52cd8a39ed9114373662eb6 (patch) | |
tree | 55c638085f078ac4c8f49ae14404e2b35df10162 /generic/tkText.h | |
parent | 67e6e1d7d6d5c238aa6b6ecba05f371711412dec (diff) | |
download | tk-e126c00b0cbde672f52cd8a39ed9114373662eb6.zip tk-e126c00b0cbde672f52cd8a39ed9114373662eb6.tar.gz tk-e126c00b0cbde672f52cd8a39ed9114373662eb6.tar.bz2 |
[.text sync -command $cmd] schedules execution of $cmd by the event loop at idle time
FossilOrigin-Name: 86e88288a65c057a65da384739b7c7b9d5362fe6
Diffstat (limited to 'generic/tkText.h')
-rw-r--r-- | generic/tkText.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkText.h b/generic/tkText.h index 49ee479..ea8ce07 100644 --- a/generic/tkText.h +++ b/generic/tkText.h @@ -782,7 +782,8 @@ typedef struct TkText { * statements. */ int autoSeparators; /* Non-zero means the separators will be * inserted automatically. */ - Tcl_Obj *afterSyncCmd; /* Command to be executed when lines are up to date */ + Tcl_Obj *afterSyncCmd; /* Command to be executed when lines are up to + * date */ } TkText; /* |