diff options
author | Neil <nyamatongwe@gmail.com> | 2021-01-29 20:51:34 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-01-29 20:51:34 +1100 |
commit | ba8b1a91525dd90f8fdcc75480f37815fecce2d2 (patch) | |
tree | 5ebce1a7d7c25aaee80e640b8cb56cc9aa5d6d34 | |
parent | f8817063200055b8b9f7b9a7a83c30100f64c903 (diff) | |
download | scintilla-mirror-ba8b1a91525dd90f8fdcc75480f37815fecce2d2.tar.gz |
Move CharacterSet and CharacterCategory from lexlib to src as in both Lexilla and Scintilla
-rw-r--r-- | lexilla/test/examples/latex/AllStyles.tex | 94 | ||||
-rw-r--r-- | lexilla/test/examples/latex/Feature1358.tex | 20 | ||||
-rw-r--r-- | src/CharacterCategory.cxx (renamed from lexlib/CharacterCategory.cxx) | 0 | ||||
-rw-r--r-- | src/CharacterCategory.h (renamed from lexlib/CharacterCategory.h) | 0 | ||||
-rw-r--r-- | src/CharacterSet.cxx (renamed from lexlib/CharacterSet.cxx) | 0 | ||||
-rw-r--r-- | src/CharacterSet.h (renamed from lexlib/CharacterSet.h) | 0 |
6 files changed, 57 insertions, 57 deletions
diff --git a/lexilla/test/examples/latex/AllStyles.tex b/lexilla/test/examples/latex/AllStyles.tex index dc7ed9b6e..066a308e5 100644 --- a/lexilla/test/examples/latex/AllStyles.tex +++ b/lexilla/test/examples/latex/AllStyles.tex @@ -1,47 +1,47 @@ -% Enumerate all styles: 0 to 12
-% Not a valid laTeX file as entities are unbalanced and not semantically correct
-% comment=4
-
-% whitespace=0
-text %
-
-% command=1
-\documentclass
-
-% tag=2
-\begin{document}
-
-% tag closing=5
-\end{document}
-
-% math=3
-\begin{math}
-E &= mc^2
-\end{math}
-
-% math block=6
-\begin{align}
-E &= mc^2
-\end{align}
-
-% comment block=7
-\begin{comment}
-A block comment
-\end{comment}
-
-% verbatim=8
-\begin{verbatim}
-puts $foo
-\end{verbatim}
-
-% short command=9
-\(\)
-
-% special=10
-\#
-
-% command optional argument=11
-\x[12pt]
-
-% error=12
-\
+% Enumerate all styles: 0 to 12 +% Not a valid laTeX file as entities are unbalanced and not semantically correct +% comment=4 + +% whitespace=0 +text % + +% command=1 +\documentclass + +% tag=2 +\begin{document} + +% tag closing=5 +\end{document} + +% math=3 +\begin{math} +E &= mc^2 +\end{math} + +% math block=6 +\begin{align} +E &= mc^2 +\end{align} + +% comment block=7 +\begin{comment} +A block comment +\end{comment} + +% verbatim=8 +\begin{verbatim} +puts $foo +\end{verbatim} + +% short command=9 +\(\) + +% special=10 +\# + +% command optional argument=11 +\x[12pt] + +% error=12 +\ diff --git a/lexilla/test/examples/latex/Feature1358.tex b/lexilla/test/examples/latex/Feature1358.tex index 88863303f..73f27b83c 100644 --- a/lexilla/test/examples/latex/Feature1358.tex +++ b/lexilla/test/examples/latex/Feature1358.tex @@ -1,10 +1,10 @@ -\begin{lstlisting}[language=make]
-# If no BOARD is found in the environment, use this default:
-BOARD ?= bluepill
-
-# To use chinese st-link v2 and ch340 dongle with bluepill
-ifeq ($(BOARD),bluepill)
-STLINK_VERSION=2
-PORT_LINUX=/dev/ttyUSB0
-endif
-\end{lstlisting}
+\begin{lstlisting}[language=make] +# If no BOARD is found in the environment, use this default: +BOARD ?= bluepill + +# To use chinese st-link v2 and ch340 dongle with bluepill +ifeq ($(BOARD),bluepill) +STLINK_VERSION=2 +PORT_LINUX=/dev/ttyUSB0 +endif +\end{lstlisting} diff --git a/lexlib/CharacterCategory.cxx b/src/CharacterCategory.cxx index a2b0e0cca..a2b0e0cca 100644 --- a/lexlib/CharacterCategory.cxx +++ b/src/CharacterCategory.cxx diff --git a/lexlib/CharacterCategory.h b/src/CharacterCategory.h index cd3320dd9..cd3320dd9 100644 --- a/lexlib/CharacterCategory.h +++ b/src/CharacterCategory.h diff --git a/lexlib/CharacterSet.cxx b/src/CharacterSet.cxx index b934c2dd4..b934c2dd4 100644 --- a/lexlib/CharacterSet.cxx +++ b/src/CharacterSet.cxx diff --git a/lexlib/CharacterSet.h b/src/CharacterSet.h index a518c27fc..a518c27fc 100644 --- a/lexlib/CharacterSet.h +++ b/src/CharacterSet.h |