Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: latex3/latex3
base: 2018-10-31
head repository: latex3/latex3
compare: 2019-01-28
Commits on Nov 02, 2018
This is needed as we can't have a constant intarray ....
Commits on Nov 03, 2018
In my tests, repeating a benchmark many times gives roughly a 1% to 4% spread
in the resulting values, so it makes some (limited) sense to keep three
significant figures.
Commits on Nov 04, 2018
This fixes overflows when code to be benchmarked took very short amounts
of time, and this should also avoid getting the number of operations to
be infinite.
If an expandable token is passed as a pole, then the expanded version
would be printed rather than the exact token list that was searched.
Commits on Nov 20, 2018
Commits on Nov 29, 2018
Commits on Dec 02, 2018
Also \int_rand:n, which is a trivial extension of int_rand:nn.
Commits on Dec 04, 2018
Enhanced the documentation for tl_range:nnn according to #495 (comment)
Commits on Dec 10, 2018
Commits on Dec 13, 2018
Commits on Dec 17, 2018
Updated documentation for \str_range:nnn to match \tl_range:nnn
Commits on Dec 20, 2018
I had thought integers are always normal fp numbers, but they can of course be
zero too
Commits on Dec 23, 2018
The default value for log-declaration has been changed to false, but the documentation was not updated
Commits on Jan 01, 2019
... also copyright for l3kernel files.
Commits on Jan 13, 2019
There was an unclosed \ifx here: the performance gain doesn't
justify the required complexity.
The data file for case folding instructs to fold some code points to
a sequence of 1,2,3 code points (given by hex numbers).  In the case
of 3 hex numbers the parsing code ended up with a space at the end of
the third number
Commits on Jan 14, 2019
This way, things like uninstall 'just work'.
Need to fix Lua ...
Commits on Jan 16, 2019
Somewhat less complex than \tl_set_from_file:Nnn
To be addressed properly later.
Rather than complicated business about x-expansion it is enough to
perform the assignment before the end of file, then let the file end.
Commits on Jan 21, 2019
Tidy up the test files and documentation and make sure that behaviour and docs match.
Commits on Jan 22, 2019
We need to tighten this up depending on final approach
to these functions. At present, they certainly are not global.
Commits on Jan 23, 2019
These are always set at the current  group level.
The work on global box functions shows this up.

These are experimental and unused, so a direct change.
Commits on Jan 26, 2019
Showing with 6,802 additions and 3,683 deletions.
  1. +4 −0 .gitignore
  2. +13 −0 build-config.lua
  3. +36 −26 contrib/testfiles/chemformula001.luatex.tlg
  4. +40 −30 contrib/testfiles/chemformula001.ptex.tlg
  5. +40 −26 contrib/testfiles/chemformula001.tlg
  6. +40 −30 contrib/testfiles/chemformula001.uptex.tlg
  7. +36 −26 contrib/testfiles/chemformula001.xetex.tlg
  8. +19 −14 contrib/testfiles/siunitx001.tlg
  9. +108 −0 discussionpapers/2018-11-hooks.tex
  10. +17 −0 discussionpapers/README.md
  11. +9 −1 l3experimental/CHANGELOG.md
  12. +2 −2 l3experimental/README.md
  13. +212 −213 l3experimental/l3benchmark/l3benchmark.dtx
  14. +4 −2 l3experimental/l3benchmark/l3benchmark.ins
  15. +1 −1 l3experimental/l3benchmark/testfiles/m3benchmark000.tlg
  16. +48 −13 l3experimental/l3benchmark/testfiles/m3benchmark001.lvt
  17. +25 −1 l3experimental/l3benchmark/testfiles/m3benchmark001.tlg
  18. +26 −24 l3experimental/l3cctab/l3cctab.dtx
  19. +4 −2 l3experimental/l3cctab/l3cctab.ins
  20. +5 −1 l3experimental/l3cctab/testfiles/m3cctab000.luatex.tlg
  21. +1 −0 l3experimental/l3cctab/testfiles/m3cctab000.tlg
  22. +5 −3 l3experimental/l3color/l3color.dtx
  23. +4 −2 l3experimental/l3color/l3color.ins
  24. +4 −2 l3experimental/l3draw/l3draw-boxes.dtx
  25. +15 −13 l3experimental/l3draw/l3draw-code.tex
  26. +4 −2 l3experimental/l3draw/l3draw-paths.dtx
  27. +4 −2 l3experimental/l3draw/l3draw-points.dtx
  28. +4 −2 l3experimental/l3draw/l3draw-scopes.dtx
  29. +4 −2 l3experimental/l3draw/l3draw-softpath.dtx
  30. +4 −2 l3experimental/l3draw/l3draw-state.dtx
  31. +4 −2 l3experimental/l3draw/l3draw-transforms.dtx
  32. +8 −7 l3experimental/l3draw/l3draw.dtx
  33. +4 −2 l3experimental/l3draw/l3draw.ins
  34. +1 −1 l3experimental/l3draw/testfiles/m3draw000.tlg
  35. +3 −3 l3experimental/l3str/l3str-convert.dtx
  36. +5 −3 l3experimental/l3str/l3str-format.dtx
  37. +4 −2 l3experimental/l3str/l3str.ins
  38. +17 −13 l3experimental/l3sys-shell/l3sys-shell.dtx
  39. +4 −2 l3experimental/l3sys-shell/l3sys-shell.ins
  40. +5 −3 l3experimental/xcoffins/xcoffins.dtx
  41. +4 −2 l3experimental/xcoffins/xcoffins.ins
  42. +6 −4 l3experimental/xgalley/l3galley.dtx
  43. +1 −1 l3experimental/xgalley/testfiles/xgalley000.tlg
  44. +6 −4 l3experimental/xgalley/xgalley.dtx
  45. +4 −2 l3experimental/xgalley/xgalley.ins
  46. +124 −4 l3kernel/CHANGELOG.md
  47. +2 −2 l3kernel/README.md
  48. +19 −41 l3kernel/build.lua
  49. +5 −3 l3kernel/expl3.dtx
  50. +28 −28 l3kernel/interface3.tex
  51. +4 −11 l3kernel/l3.ins
  52. +4 −2 l3kernel/l3alloc.dtx
  53. +6 −3 l3kernel/l3basics.dtx
  54. +4 −2 l3kernel/l3bootstrap.dtx
  55. +414 −209 l3kernel/l3box.dtx
  56. +489 −556 l3kernel/l3candidates.dtx
  57. +48 −4 l3kernel/l3clist.dtx
  58. +358 −143 l3kernel/l3coffins.dtx
  59. +8 −10 l3kernel/l3color-base.dtx
  60. +38 −24 l3kernel/l3deprecation.dtx
  61. +28 −11 l3kernel/l3doc.dtx
  62. +4 −2 l3kernel/l3docstrip.dtx
  63. +11 −9 l3kernel/l3drivers.dtx
  64. +6 −11 l3kernel/l3expan.dtx
  65. +193 −99 l3kernel/l3file.dtx
  66. +5 −3 l3kernel/l3final.dtx
  67. +4 −2 l3kernel/l3flag.dtx
  68. +4 −2 l3kernel/l3format.ins
  69. +4 −2 l3kernel/l3fp-assign.dtx
  70. +4 −2 l3kernel/l3fp-aux.dtx
  71. +30 −3 l3kernel/l3fp-basics.dtx
  72. +4 −2 l3kernel/l3fp-convert.dtx
  73. +4 −2 l3kernel/l3fp-expo.dtx
  74. +5 −3 l3kernel/l3fp-extended.dtx
  75. +4 −2 l3kernel/l3fp-logic.dtx
  76. +5 −3 l3kernel/l3fp-parse.dtx
  77. +22 −12 l3kernel/l3fp-random.dtx
  78. +4 −2 l3kernel/l3fp-round.dtx
  79. +4 −2 l3kernel/l3fp-traps.dtx
  80. +4 −2 l3kernel/l3fp-trig.dtx
  81. +20 −15 l3kernel/l3fp.dtx
  82. +4 −2 l3kernel/l3fparray.dtx
  83. +15 −24 l3kernel/l3int.dtx
  84. +12 −2 l3kernel/l3intarray.dtx
  85. +4 −2 l3kernel/l3kernel-functions.dtx
  86. +8 −6 l3kernel/l3keys.dtx
  87. +16 −5 l3kernel/l3luatex.dtx
  88. +7 −5 l3kernel/l3msg.dtx
  89. +10 −3 l3kernel/l3names.dtx
  90. +39 −19 l3kernel/l3obsolete.txt
  91. +0 −129 l3kernel/l3oldmodules.dtx
  92. +1 −0 l3kernel/l3prefixes.csv
  93. +17 −2 l3kernel/l3prg.dtx
  94. +4 −2 l3kernel/l3prop.dtx
  95. +4 −2 l3kernel/l3quark.dtx
  96. +5 −3 l3kernel/l3regex.dtx
  97. +31 −2 l3kernel/l3seq.dtx
  98. +6 −4 l3kernel/l3skip.dtx
  99. +45 −37 l3kernel/l3sort.dtx
  100. +48 −10 l3kernel/l3str.dtx
  101. +4 −3 l3kernel/l3styleguide.tex
  102. +4 −2 l3kernel/l3syntax-changes.tex
  103. +5 −3 l3kernel/l3sys.dtx
  104. +4 −2 l3kernel/l3term-glossary.tex
  105. +6 −4 l3kernel/l3tl-analysis.dtx
  106. +362 −142 l3kernel/l3tl.dtx
  107. +37 −40 l3kernel/l3token.dtx
  108. +75 −68 l3kernel/l3unicode.dtx
  109. +28 −26 l3kernel/source3.tex
  110. +27 −25 l3kernel/source3body.tex
  111. +13 −7 l3kernel/testfiles/m3box001.lvt
  112. +10 −2 l3kernel/testfiles/m3box001.ptex.tlg
  113. +10 −2 l3kernel/testfiles/m3box001.tlg
  114. +10 −2 l3kernel/testfiles/m3box001.uptex.tlg
  115. +6 −2 l3kernel/testfiles/m3box002.lvt
  116. +8 −0 l3kernel/testfiles/m3box002.tlg
  117. +6 −2 l3kernel/testfiles/m3box003.lvt
  118. +8 −0 l3kernel/testfiles/m3box003.ptex.tlg
  119. +8 −0 l3kernel/testfiles/m3box003.tlg
  120. +8 −0 l3kernel/testfiles/m3box003.uptex.tlg
  121. +18 −18 l3kernel/testfiles/m3box004.lvt
  122. +16 −0 l3kernel/testfiles/m3char001.luatex.tlg
  123. +28 −1 l3kernel/testfiles/m3char001.lvt
  124. +16 −0 l3kernel/testfiles/m3char001.tlg
  125. +26 −0 l3kernel/testfiles/m3char001.xetex.tlg
  126. +1 −1 l3kernel/testfiles/m3coffins001.luatex.tlg
  127. +1 −1 l3kernel/testfiles/m3coffins001.ptex.tlg
  128. +1 −1 l3kernel/testfiles/m3coffins001.tlg
  129. +1 −1 l3kernel/testfiles/m3coffins001.uptex.tlg
  130. +1 −1 l3kernel/testfiles/m3coffins001.xetex.tlg
  131. +45 −15 l3kernel/testfiles/m3expan001.tlg
  132. +23 −5 l3kernel/testfiles/m3expan002.tlg
  133. +215 −95 l3kernel/testfiles/m3expl001.luatex.tlg
  134. +216 −96 l3kernel/testfiles/m3expl001.ptex.tlg
  135. +314 −95 l3kernel/testfiles/m3expl001.tlg
  136. +315 −96 l3kernel/testfiles/m3expl001.uptex.tlg
  137. +216 −96 l3kernel/testfiles/m3expl001.xetex.tlg
  138. +4 −1 l3kernel/testfiles/m3expl002.luatex.tlg
  139. +5 −2 l3kernel/testfiles/m3expl002.ptex.tlg
  140. +4 −1 l3kernel/testfiles/m3expl002.tlg
  141. +5 −2 l3kernel/testfiles/m3expl002.uptex.tlg
  142. +5 −2 l3kernel/testfiles/m3expl002.xetex.tlg
  143. +215 −95 l3kernel/testfiles/m3expl003.luatex.tlg
  144. +216 −96 l3kernel/testfiles/m3expl003.ptex.tlg
  145. +314 −95 l3kernel/testfiles/m3expl003.tlg
  146. +315 −96 l3kernel/testfiles/m3expl003.uptex.tlg
  147. +216 −96 l3kernel/testfiles/m3expl003.xetex.tlg
  148. +4 −1 l3kernel/testfiles/m3expl004.luatex.tlg
  149. +5 −2 l3kernel/testfiles/m3expl004.ptex.tlg
  150. +4 −1 l3kernel/testfiles/m3expl004.tlg
  151. +5 −2 l3kernel/testfiles/m3expl004.uptex.tlg
  152. +5 −2 l3kernel/testfiles/m3expl004.xetex.tlg
  153. +0 −21 l3kernel/testfiles/m3expl005.lvt
  154. +0 −67 l3kernel/testfiles/m3expl005.tlg
  155. +4 −1 l3kernel/testfiles/m3expl006.luatex.tlg
  156. +5 −2 l3kernel/testfiles/m3expl006.ptex.tlg
  157. +4 −1 l3kernel/testfiles/m3expl006.tlg
  158. +5 −2 l3kernel/testfiles/m3expl006.uptex.tlg
  159. +5 −2 l3kernel/testfiles/m3expl006.xetex.tlg
  160. +19 −58 l3kernel/testfiles/m3file002.lvt
  161. +4 −63 l3kernel/testfiles/m3file002.tlg
  162. +19 −0 l3kernel/testfiles/m3fp-basics005.lvt
  163. +18 −0 l3kernel/testfiles/m3fp-basics005.tlg
  164. +14 −0 l3kernel/testfiles/m3fp-convert001.lvt
  165. +39 −0 l3kernel/testfiles/m3fp-convert001.tlg
  166. +6 −1 l3kernel/testfiles/m3int003.lvt
  167. +6 −1 l3kernel/testfiles/m3int003.tlg
  168. +30 −1 l3kernel/testfiles/m3ior002.lvt
  169. +11 −1 l3kernel/testfiles/m3ior002.tlg
  170. +1 −1 l3kernel/testfiles/m3msg004.luatex.tlg
  171. +1 −1 l3kernel/testfiles/m3msg004.tlg
  172. +6 −0 l3kernel/testfiles/m3rand001.lvt
  173. +9 −0 l3kernel/testfiles/m3rand001.tlg
  174. +14 −0 l3kernel/testfiles/m3rand001.xetex.tlg
  175. +1 −1 l3kernel/testfiles/m3regex009.tlg
  176. +6 −1 l3kernel/testfiles/m3skip002.lvt
  177. +6 −1 l3kernel/testfiles/m3skip002.tlg
  178. +10 −8 l3kernel/testfiles/m3sort001.luatex.tlg
  179. +10 −8 l3kernel/testfiles/m3sort001.tlg
  180. +1 −1 l3kernel/testfiles/m3tl013.tlg
  181. +1 −1 l3kernel/testfiles/m3tl013.uptex.tlg
  182. +1 −2 l3packages/CHANGELOG.md
  183. +2 −2 l3packages/README.md
  184. +5 −3 l3packages/l3keys2e/l3keys2e.dtx
  185. +5 −3 l3packages/l3keys2e/l3keys2e.ins
  186. +16 −11 l3packages/xfp/xfp.dtx
  187. +4 −2 l3packages/xfp/xfp.ins
  188. +1 −1 l3packages/xfrac/testfiles/xfrac000.tlg
  189. +6 −4 l3packages/xfrac/xfrac.dtx
  190. +5 −3 l3packages/xfrac/xfrac.ins
  191. +11 −11 l3packages/xparse/xparse.dtx
  192. +4 −2 l3packages/xparse/xparse.ins
  193. +7 −7 l3packages/xtemplate/xtemplate.dtx
  194. +4 −2 l3packages/xtemplate/xtemplate.ins
  195. +13 −14 l3trial/l3auxdata/l3auxdata.dtx
  196. +2 −2 l3trial/l3check/l3check.dtx
  197. +2 −2 l3trial/l3image/l3image.dtx
  198. +1 −1 l3trial/l3ldb/testfiles/m3ldb000.tlg
  199. +5 −5 l3trial/l3tree/l3tree.dtx
  200. +5 −5 l3trial/xbox/testfiles/xbox001.luatex.tlg
  201. +5 −5 l3trial/xbox/testfiles/xbox001.ptex.tlg
  202. +5 −5 l3trial/xbox/testfiles/xbox001.tlg
  203. +5 −5 l3trial/xbox/testfiles/xbox001.uptex.tlg
  204. +5 −5 l3trial/xbox/testfiles/xbox001.xetex.tlg
  205. +2 −2 l3trial/xfont/testfiles/l3font000.tlg
  206. +2 −2 l3trial/xfont/xfss.dtx
@@ -16,3 +16,7 @@ xpackages/xfrontm/*.log
xpackages/xfrontm/*.lot
xpackages/xfrontm/*.toc
*.*~
*.toc
*.aux
*.log
*.gz
@@ -36,6 +36,19 @@ end
function update_tag(file,content,tagname,tagdate)
local iso = "%d%d%d%d%-%d%d%-%d%d"
local url = "https://github.com/latex3/latex3/compare/"
if string.match(content,"%(C%)%s*[%d%-,]+ The LaTeX3 Project") then
local year = os.date("%Y")
content = string.gsub(content,
"%(C%)%s*([%d%-,]+) The LaTeX3 Project",
"(C) %1," .. year .. " The LaTeX3 Project")
content = string.gsub(content,year .. "," .. year,year)
content = string.gsub(content,
"%-" .. year - 1 .. "," .. year,
"-" .. year)
content = string.gsub(content,
year - 2 .. "," .. year - 1 .. "," .. year,
year - 2 .. "-" .. year)
end
if string.match(file,"%.dtx$") then
content = string.gsub(content,
"\n\\ProvidesExpl" .. "(%w+ *{[^}]+} *){" .. iso .. "}",
@@ -67,19 +67,6 @@ Completed box being shipped out [1]
......\pdfliteral origin{0 g }
......\pdfliteral origin{0.3985 w }
......\hbox(0.0+0.0)x0.0, direction TLT
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
@@ -123,6 +110,7 @@ Completed box being shipped out [1]
.........\pdfliteral origin{q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{S }
.......\hbox(0.0+0.0)x0.0, direction TLT
........\hbox(0.0+0.0)x0.0, direction TLT
@@ -131,6 +119,7 @@ Completed box being shipped out [1]
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{q }
.........\hbox(0.0+0.0)x0.0, direction TLT
..........\glue 12.5
@@ -142,16 +131,23 @@ Completed box being shipped out [1]
.............\pdfliteral origin{0 G }
.............\pdfliteral origin{0 g }
.............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 push {0 g 0 G}
..............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 pop
.............\glue(\spaceskip) 0.0
...........\pdfliteral origin{Q }
...........\glue(\spaceskip) 0.0
..........\glue 0.0 plus 1.0fil minus 1.0fil
.........\pdfliteral origin{Q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
........\hbox(0.0+0.0)x0.0, direction TLT
.........\pdfliteral origin{q }
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{q }
.........\hbox(0.0+0.0)x0.0, direction TLT
..........\glue 12.5
@@ -163,12 +159,19 @@ Completed box being shipped out [1]
.............\pdfliteral origin{0 G }
.............\pdfliteral origin{0 g }
.............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 push {0 g 0 G}
..............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 pop
.............\glue(\spaceskip) 0.0
...........\pdfliteral origin{Q }
...........\glue(\spaceskip) 0.0
..........\glue 0.0 plus 1.0fil minus 1.0fil
.........\pdfliteral origin{Q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{4.98138 3.41922 m }
.......\pdfliteral origin{19.72627 3.41922 l }
.......\pdfliteral origin{S }
@@ -177,6 +180,8 @@ Completed box being shipped out [1]
.......\pdfliteral origin{q [ ] 0.0 d 1 j 1 J 0.0 0.0 m -3.48695 1.04608 l -1.7
4347 0.0 l -3.48\ETC.}
.......\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{Q }
.......\glue 0.0 plus 1.0fil minus 1.0fil
......\pdfliteral origin{n }
@@ -275,19 +280,6 @@ Completed box being shipped out [1]
......\pdfliteral origin{0 g }
......\pdfliteral origin{0.3985 w }
......\hbox(0.0+0.0)x0.0, direction TLT
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
@@ -331,6 +323,7 @@ Completed box being shipped out [1]
.........\pdfliteral origin{q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{S }
.......\hbox(0.0+0.0)x0.0, direction TLT
........\hbox(0.0+0.0)x0.0, direction TLT
@@ -339,6 +332,7 @@ Completed box being shipped out [1]
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{q }
.........\hbox(0.0+0.0)x0.0, direction TLT
..........\glue 12.5
@@ -350,16 +344,23 @@ Completed box being shipped out [1]
.............\pdfliteral origin{0 G }
.............\pdfliteral origin{0 g }
.............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 push {0 g 0 G}
..............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 pop
.............\glue(\spaceskip) 0.0
...........\pdfliteral origin{Q }
...........\glue(\spaceskip) 0.0
..........\glue 0.0 plus 1.0fil minus 1.0fil
.........\pdfliteral origin{Q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
........\hbox(0.0+0.0)x0.0, direction TLT
.........\pdfliteral origin{q }
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{q }
.........\hbox(0.0+0.0)x0.0, direction TLT
..........\glue 12.5
@@ -371,11 +372,18 @@ Completed box being shipped out [1]
.............\pdfliteral origin{0 G }
.............\pdfliteral origin{0 g }
.............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 push {0 g 0 G}
..............\hbox(0.0+0.0)x0.0, direction TLT
..............\pdfcolorstack 0 pop
.............\glue(\spaceskip) 0.0
...........\pdfliteral origin{Q }
...........\glue(\spaceskip) 0.0
..........\glue 0.0 plus 1.0fil minus 1.0fil
.........\pdfliteral origin{Q }
.........\glue(\spaceskip) 0.0
.........\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{4.98138 3.41922 m }
.......\pdfliteral origin{19.72627 3.41922 l }
.......\pdfliteral origin{S }
@@ -384,6 +392,8 @@ Completed box being shipped out [1]
.......\pdfliteral origin{q [ ] 0.0 d 1 j 1 J 0.0 0.0 m -3.48695 1.04608 l -1.7
4347 0.0 l -3.48\ETC.}
.......\pdfliteral origin{Q }
.......\glue(\spaceskip) 0.0
.......\glue(\spaceskip) 0.0
.......\pdfliteral origin{Q }
.......\glue 0.0 plus 1.0fil minus 1.0fil
......\pdfliteral origin{n }
@@ -79,19 +79,6 @@ Completed box being shipped out [1]
......\special{ps:: 0 setgray }
......\special{ps:: 0.3985 pgfw }
......\hbox(0.0+0.0)x0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: save }
.......\glue 0.0
.......\glue 0.0
@@ -135,6 +122,7 @@ Completed box being shipped out [1]
.........\special{ps:: save }
.........\glue 0.0
.........\special{ps:: restore }
.......\glue 0.0
.......\special{ps:: pgfstr }
.......\hbox(0.0+0.0)x0.0
........\hbox(0.0+0.0)x0.0
@@ -143,45 +131,62 @@ Completed box being shipped out [1]
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\special{ps:: save }
.........\special{ps:: [1.0 0.0 0.0 1.0 12.45346 6.10916 ] concat }
.........\special{ps:: pgfs}
.........\special{ps::[end]}
.........\hbox(0.0+0.0)x0.0
..........\special{ps:: 0 setgray }
..........\special{ps: 0 setgray }
..........\hbox(0.0+0.0)x0.0
...........\special{color push gray 0}
...........\hbox(0.0+0.0)x0.0
...........\special{color pop}
..........\glue 0.0
.........\glue 0.0
.........\special{ps::[begin]}
.........\special{ps:: pgfr}
.........\glue 0.0
.........\special{ps:: restore }
.........\glue 0.0
.........\special{ps:: restore }
........\hbox(0.0+0.0)x0.0
.........\special{ps:: save }
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\special{ps:: save }
.........\special{ps:: [1.0 0.0 0.0 1.0 12.45346 0.72928 ] concat }
.........\special{ps:: pgfs}
.........\special{ps::[end]}
.........\hbox(0.0+0.0)x0.0
..........\special{ps:: 0 setgray }
..........\special{ps: 0 setgray }
..........\hbox(0.0+0.0)x0.0
...........\special{color push gray 0}
...........\hbox(0.0+0.0)x0.0
...........\special{color pop}
..........\glue 0.0
.........\glue 0.0
.........\special{ps::[begin]}
.........\special{ps:: pgfr}
.........\glue 0.0
.........\special{ps:: restore }
.........\glue 0.0
.........\special{ps:: restore }
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: 4.98138 3.41922 moveto }
.......\special{ps:: 19.72627 3.41922 lineto }
.......\special{ps:: pgfstr }
.......\special{ps:: save }
.......\special{ps:: [1.0 0.0 0.0 1.0 19.72627 3.41922 ] concat }
.......\special{ps:: save [ ] 0.0 setdash 1 setlinejoin 1 setlinecap 0.0 0.0 moveto -\ETC.}
.......\special{ps:: restore }
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: restore }
.......\glue 0.0 plus 1.0fil minus 1.0fil
......\special{ps:: newpath }
@@ -279,19 +284,6 @@ Completed box being shipped out [1]
......\special{ps:: 0 setgray }
......\special{ps:: 0.3985 pgfw }
......\hbox(0.0+0.0)x0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: save }
.......\glue 0.0
.......\glue 0.0
@@ -335,6 +327,7 @@ Completed box being shipped out [1]
.........\special{ps:: save }
.........\glue 0.0
.........\special{ps:: restore }
.......\glue 0.0
.......\special{ps:: pgfstr }
.......\hbox(0.0+0.0)x0.0
........\hbox(0.0+0.0)x0.0
@@ -343,44 +336,61 @@ Completed box being shipped out [1]
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\special{ps:: save }
.........\special{ps:: [1.0 0.0 0.0 1.0 12.45346 6.10916 ] concat }
.........\special{ps:: pgfs}
.........\special{ps::[end]}
.........\hbox(0.0+0.0)x0.0
..........\special{ps:: 0 setgray }
..........\special{ps: 0 setgray }
..........\hbox(0.0+0.0)x0.0
...........\special{color push gray 0}
...........\hbox(0.0+0.0)x0.0
...........\special{color pop}
..........\glue 0.0
.........\glue 0.0
.........\special{ps::[begin]}
.........\special{ps:: pgfr}
.........\glue 0.0
.........\special{ps:: restore }
.........\glue 0.0
.........\special{ps:: restore }
........\hbox(0.0+0.0)x0.0
.........\special{ps:: save }
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\glue 0.0
.........\special{ps:: save }
.........\special{ps:: [1.0 0.0 0.0 1.0 12.45346 0.72928 ] concat }
.........\special{ps:: pgfs}
.........\special{ps::[end]}
.........\hbox(0.0+0.0)x0.0
..........\special{ps:: 0 setgray }
..........\special{ps: 0 setgray }
..........\hbox(0.0+0.0)x0.0
...........\special{color push gray 0}
...........\hbox(0.0+0.0)x0.0
...........\special{color pop}
..........\glue 0.0
.........\glue 0.0
.........\special{ps::[begin]}
.........\special{ps:: pgfr}
.........\glue 0.0
.........\special{ps:: restore }
.........\glue 0.0
.........\special{ps:: restore }
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: 4.98138 3.41922 moveto }
.......\special{ps:: 19.72627 3.41922 lineto }
.......\special{ps:: pgfstr }
.......\special{ps:: save }
.......\special{ps:: [1.0 0.0 0.0 1.0 19.72627 3.41922 ] concat }
.......\special{ps:: save [ ] 0.0 setdash 1 setlinejoin 1 setlinecap 0.0 0.0 moveto -\ETC.}
.......\special{ps:: restore }
.......\glue 0.0
.......\glue 0.0
.......\special{ps:: restore }
.......\glue 0.0 plus 1.0fil minus 1.0fil
......\special{ps:: newpath }

No commit comments for this range