diff options
author | 2020-05-26 14:26:49 -0400 | |
---|---|---|
committer | 2020-05-26 14:26:49 -0400 | |
commit | ee8ef57e3c7d6839df44411fefeaea10c4c837aa (patch) | |
tree | ad525b6432c69340d97a1b8e22e836e089455859 /src | |
parent | 02dcc60155cb8a111366fe8e2f4340c63a37ed9a (diff) | |
download | textadept-ee8ef57e3c7d6839df44411fefeaea10c4c837aa.tar.gz textadept-ee8ef57e3c7d6839df44411fefeaea10c4c837aa.zip |
Updated to latest Scintilla with ability to get style number from name.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 | ||||
-rw-r--r-- | src/textadept.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index e6280f78..1e18acea 100644 --- a/src/Makefile +++ b/src/Makefile @@ -376,7 +376,7 @@ else gtdialog_url = http://foicica.com/hg/gtdialog/archive/tip.zip endif -scintilla_zip = 65f5ef3129ca.zip +scintilla_zip = b276a93eeb2f.zip lua_tgz = lua-5.3.5.tar.gz lpeg_tgz = lpeg-1.0.2.tar.gz lfs_zip = v1_7_0_2.zip diff --git a/src/textadept.c b/src/textadept.c index dc79ea47..8e743087 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -1152,6 +1152,7 @@ static int call_scintilla( ltype = SINT; break; case SCI_SETLEXERLANGUAGE: case SCI_LOADLEXERLIBRARY: ltype = SSTRING; break; + case SCI_GETNAMEDSTYLES: ltype = SSTRING, rtype = SINDEX; break; default: ltype = SSTRINGRET; } |