summaryrefslogtreecommitdiff
path: root/scripts/context
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2014-04-24 09:39:00 +0200
committerHans Hagen <pragma@wxs.nl>2014-04-24 09:39:00 +0200
commit7b9068a1cac76b9c661a825f3409c39ed6787a7a (patch)
tree8d51cab5d15e28c10ef158dfd682d60e7c3f01de /scripts/context
parentdbde719e7593a47d67acd0fdc0aa48a0ea55c6e5 (diff)
downloadcontext-7b9068a1cac76b9c661a825f3409c39ed6787a7a.tar.gz
beta 2014.04.24 09:39
Diffstat (limited to 'scripts/context')
-rw-r--r--scripts/context/ruby/texexec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/context/ruby/texexec.rb b/scripts/context/ruby/texexec.rb
index c673cb46b..7f8298c09 100644
--- a/scripts/context/ruby/texexec.rb
+++ b/scripts/context/ruby/texexec.rb
@@ -685,22 +685,22 @@ end
# so far for compatibility, will move to tex
-@@extrastringvars = [
+extrastringvars = [
'pages', 'background', 'backspace', 'topspace', 'boxtype', 'tempdir','bannerheight',
'printformat', 'method', 'scale', 'selection',
'combination', 'textwidth', 'addempty', 'logfile',
'startline', 'endline', 'startcolumn', 'endcolumn', 'scale'
]
-@@extrabooleanvars = [
+extrabooleanvars = [
'centerpage', 'noduplex', 'color', 'pretty',
'fullscreen', 'screensaver', 'markings'
]
if job = TEX.new(logger) then
- job.setextrastringvars(@@extrastringvars)
- job.setextrabooleanvars(@@extrabooleanvars)
+ job.setextrastringvars(extrastringvars)
+ job.setextrabooleanvars(extrabooleanvars)
job.booleanvars.each do |k|
commandline.registerflag(k)