Thomas A. Schmitz wrote:
On Nov 9, 2005, at 2:11 PM, Hans Hagen wrote:
not with headphones, which i normally wear when i'm in that kind of debugging mode -)
try a megaphone? ;-)
I'm with you :))
so, what was the test file?
Hans
Compile this with newtexexec:
\starttext
\index{This} This \index{and} and \index{That} That.
\page
\placeindex
\stoptext
can you play a bit with the following: (patch context/ruby/base/texutil.rb) def preset(shortcuts=[],expansions=[],reductions=[],divisions=[]) # maybe we should move this to sort-def.tex 'a'.upto('z') do |c| expander(c) ; division(c) end 'A'.upto('Z') do |c| expander(c) ; division(c) end # ! ! ! ! ! ! ! added ! ! ! ! ! ! ! ! expander('1','b') ; expander('2','c') ; expander('3','e') ; expander('4','f') expander('5','g') ; expander('6','h') ; expander('7','i') ; expander('8','i') expander('9','j') ; expander('0','a') ; expander('-','-') ; # end potential move shortcuts.each do |s| shortcut(s[0],s[1]) end expansions.each do |e| expander(e[0],e[1]) end reductions.each do |r| reducer(r[0],r[1]) end divisions.each do |d| division(d[0],d[1]) end end