aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile6
-rw-r--r--src/textadept.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index 024e4863..9a9dd2fe 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -112,7 +112,7 @@ sci_objs = AutoComplete.o CallTip.o CaseConvert.o CaseFolder.o Catalogue.o \
sci_lex_objs = Accessor.o CharacterCategory.o CharacterSet.o LexerBase.o \
LexerModule.o LexerNoExceptions.o LexerSimple.o PropSetSimple.o \
StyleContext.o WordList.o
-sci_gtk_objs = PlatGTK.o ScintillaGTK.o
+sci_gtk_objs = PlatGTK.o ScintillaGTK.o ScintillaGTKAccessible.o
regex_objs = regcomp.o regerror.o regexec.o tre-ast.o tre-compile.o \
tre-filter.o tre-match-backtrack.o tre-match-parallel.o tre-mem.o \
tre-parse.o tre-stack.o xmalloc.o
@@ -401,10 +401,10 @@ else
lspawn_url = http://foicica.com/hg/lspawn/archive/tip.zip
endif
-scintilla_tgz = scintilla370.tgz
+scintilla_tgz = scintilla371.tgz
tre_zip = cdce45e8dd7a3b36954022b4a4d3570e1ac5a4f8.zip
scinterm_zip = scinterm_1.8.zip
-scintillua_zip = scintillua_3.7.0-1.zip
+scintillua_zip = scintillua_3.7.1-1.zip
lua_tgz = lua-5.3.3.tar.gz
lpeg_tgz = lpeg-1.0.0.tar.gz
lfs_zip = v_1_6_3.zip
diff --git a/src/textadept.c b/src/textadept.c
index d1a05708..dbab927d 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -2185,7 +2185,7 @@ static Scintilla *new_view(sptr_t doc) {
#elif CURSES
Scintilla *view = scintilla_new(s_notify);
#endif
- SS(view, SCI_USEPOPUP, 0, 0);
+ SS(view, SCI_USEPOPUP, SC_POPUP_NEVER, 0);
lL_addview(lua, view);
l_setglobalview(lua, view);
if (doc) SS(view, SCI_SETDOCPOINTER, 0, doc);