Comment: | [core] gc engine, text processor: remove useless commands, code clarification |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
6e4f6d12f0bead9361f72b0439474224 |
User & Date: | olr on 2018-06-03 17:43:47 |
Other Links: | branch diff | manifest | tags |
2018-06-04
| ||
08:11 | [graphspell] French ad hoc suggestions check-in: 7c28bd0420 user: olr tags: graphspell, rg | |
2018-06-03
| ||
17:43 | [core] gc engine, text processor: remove useless commands, code clarification check-in: 6e4f6d12f0 user: olr tags: core, rg | |
13:51 | [build][core] gc engine update check-in: 1d9246b161 user: olr tags: core, build, rg | |
Modified gc_core/py/lang_core/gc_engine.py from [dc1fba7ea9] to [1262fde6c4].
312 313 314 315 316 317 318 | 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | - - + + - + - - - + - + | if bContext: dErr['sUnderlined'] = sSentence0[dErr["nStart"]:dErr["nEnd"]] dErr['sBefore'] = sSentence0[max(0,dErr["nStart"]-80):dErr["nStart"]] dErr['sAfter'] = sSentence0[dErr["nEnd"]:dErr["nEnd"]+80] return dErr |