mirror of
https://github.com/chriswolfvision/eplot.git
synced 2025-05-06 06:46:43 +08:00
Applied patch to make -notitle to work with -m / --mulfrmul
This commit is contained in:
parent
b5319c2ec5
commit
18d55e7244
6
eplot
6
eplot
@ -24,6 +24,8 @@
|
|||||||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
# **************************************************************************
|
# **************************************************************************
|
||||||
# Changelog:
|
# Changelog:
|
||||||
|
# 2.11 06.08.2020: -Charles Franklin added --notitle option (@cjfman)
|
||||||
|
# 2.10 05.08.2020: -Bugfix: print --help output to stdout instead of stderr
|
||||||
# 2.09 03.09.2018: -Jon Coppeard added support for SVG (@jonco3 at github)
|
# 2.09 03.09.2018: -Jon Coppeard added support for SVG (@jonco3 at github)
|
||||||
# 2.08 24.07.2017: -added dumb terminal support by Peter Barnes
|
# 2.08 24.07.2017: -added dumb terminal support by Peter Barnes
|
||||||
# 2.07 03.05.2007: -bugfix case where input file is empty
|
# 2.07 03.05.2007: -bugfix case where input file is empty
|
||||||
@ -57,7 +59,7 @@ require 'tempfile'
|
|||||||
# **************************************************************************
|
# **************************************************************************
|
||||||
# CONFIGURATION
|
# CONFIGURATION
|
||||||
|
|
||||||
$Version="2.07 03.05.2007"
|
$Version="2.11 06.08.2020"
|
||||||
$TextViewer="cat"
|
$TextViewer="cat"
|
||||||
$GnuPlot4OrNewer=true
|
$GnuPlot4OrNewer=true
|
||||||
|
|
||||||
@ -193,7 +195,6 @@ class OptionController
|
|||||||
when /^-d$|^--dumb$/
|
when /^-d$|^--dumb$/
|
||||||
com=com+"set terminal dumb;\n"
|
com=com+"set terminal dumb;\n"
|
||||||
|
|
||||||
|
|
||||||
# ---- Do we suppress the title?
|
# ---- Do we suppress the title?
|
||||||
when /^--notitle$/
|
when /^--notitle$/
|
||||||
@o["NoTitle"]=true
|
@o["NoTitle"]=true
|
||||||
@ -585,6 +586,7 @@ class Controller
|
|||||||
t=File.open(fn)
|
t=File.open(fn)
|
||||||
openedFiles.push(t)
|
openedFiles.push(t)
|
||||||
end
|
end
|
||||||
|
removeDummyTitles(openedFiles.length) if @oc["NoTitle"]
|
||||||
runMulFrMulOpenedFiles(openedFiles)
|
runMulFrMulOpenedFiles(openedFiles)
|
||||||
openedFiles.each { |f| f.close }
|
openedFiles.each { |f| f.close }
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user