Skip to content

Commit

Permalink
symbols-extract.tes works in 8-bit mode now (refs #5)
Browse files Browse the repository at this point in the history
* significantly speeds up build time
* Scintilla and Lexilla headers and symbols are all-ASCII anyway.
* We should probably have a look at the quicksort implementation
  in string.tes, as it can probably be optimized in UTF-8 documents as well.
  • Loading branch information
rhaberkorn committed Sep 9, 2024
1 parent 9241075 commit a7d28d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ CLEANFILES = $(BUILT_SOURCES) \

symbols-scintilla.c : @SCINTILLA_PATH@/include/Scintilla.h \
symbols-extract.tes
$(SCITECO_MINIMAL) -m -- @srcdir@/symbols-extract.tes \
$(SCITECO_MINIMAL) -8m -- @srcdir@/symbols-extract.tes \
-p "SCI_" -n teco_symbol_list_scintilla $@ $<

symbols-scilexer.c : @LEXILLA_PATH@/include/SciLexer.h \
symbols-extract.tes
$(SCITECO_MINIMAL) -m -- @srcdir@/symbols-extract.tes \
$(SCITECO_MINIMAL) -8m -- @srcdir@/symbols-extract.tes \
-p "SCE_" -n teco_symbol_list_scilexer $@ $<
2 changes: 1 addition & 1 deletion src/symbols-extract.tes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/sciteco -m
#!/usr/local/bin/sciteco -8m
!*
* ./symbols-extract.tes [-p <prefix pattern list>] -n <SymbolList object> [--] \
* <output file> <input header>
Expand Down

0 comments on commit a7d28d3

Please sign in to comment.