summaryrefslogtreecommitdiffstats
path: root/ds9/library/plotelement.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'ds9/library/plotelement.tcl')
-rw-r--r--ds9/library/plotelement.tcl17
1 files changed, 0 insertions, 17 deletions
diff --git a/ds9/library/plotelement.tcl b/ds9/library/plotelement.tcl
deleted file mode 100644
index e0dea8a..0000000
--- a/ds9/library/plotelement.tcl
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (C) 1999-2018
-# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
-# For conditions of distribution and use, see copyright notice in "copyright"
-
-package provide DS9 1.0
-
-proc PlotHighliteElement {varname rowlist} {
- upvar #0 $varname var
- global $varname
-
- # rowlist starts at 1
- set result {}
- foreach rr $rowlist {
- append result "[expr $rr-1] "
- }
- $var(proc,highlite) $varname $result
-}