diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-06-07 15:44:38 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-06-07 15:44:38 (GMT) |
commit | 72cee7539e883903b6bfec4fd03738753457b992 (patch) | |
tree | 9b81edba6628086708626189978191423f3b4a56 /ds9/parsers/plotparser.tcl | |
parent | 86fcbe6827bd920c0fc8317d63f37697f0c22ad8 (diff) | |
download | blt-72cee7539e883903b6bfec4fd03738753457b992.zip blt-72cee7539e883903b6bfec4fd03738753457b992.tar.gz blt-72cee7539e883903b6bfec4fd03738753457b992.tar.bz2 |
support multiple graphs per plot
Diffstat (limited to 'ds9/parsers/plotparser.tcl')
-rw-r--r-- | ds9/parsers/plotparser.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ds9/parsers/plotparser.tcl b/ds9/parsers/plotparser.tcl index 93d01c5..3dc471e 100644 --- a/ds9/parsers/plotparser.tcl +++ b/ds9/parsers/plotparser.tcl @@ -5420,7 +5420,7 @@ proc plot::yyparse {} { 62 { set _ xyexey } 64 { PlotCmdSave $2 } 65 { PlotCmdData $2 } - 66 { ProcessCmdCVAR0 PlotDeleteData } + 66 { ProcessCmdCVAR0 PlotDeleteAllDataSet } 70 { ProcessCmdCVAR stats $2 PlotStats } 71 { ProcessCmdCVAR stats $2 PlotStats } 72 { ProcessCmdCVAR list $2 PlotList } @@ -5455,8 +5455,8 @@ proc plot::yyparse {} { 114 { ProcessCmdSet iap jpeg,quality $1 } 115 { PlotCmdLoad $1 xy } 116 { PlotCmdLoad $1 $2 } - 117 { global cvarname; PlotDupData $cvarname 1 } - 118 { global cvarname; PlotDupData $cvarname $1 } + 117 { global cvarname; PlotDupDataSet $cvarname 1 } + 118 { global cvarname; PlotDupDataSet $cvarname $1 } 119 { ProcessCmdSet ps orient $2 } 120 { ProcessCmdSet ps orient $2 } 121 { ProcessCmdSet ps size $2 } |