From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- pkg/xtools/gtools/gtcur.x | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkg/xtools/gtools/gtcur.x (limited to 'pkg/xtools/gtools/gtcur.x') diff --git a/pkg/xtools/gtools/gtcur.x b/pkg/xtools/gtools/gtcur.x new file mode 100644 index 00000000..7103bf9c --- /dev/null +++ b/pkg/xtools/gtools/gtcur.x @@ -0,0 +1,21 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# GT_GCUR -- Interface to clgcur to confirm EOF, map key 'q' to EOF. + +int procedure gt_gcur (cur, wx, wy, wcs, key, cmd, sz_cmd) + +char cur[ARB] # Cursor parameter +real wx, wy # Cursor position +int wcs, key # WCS and cursor key +char cmd[sz_cmd] # Command string +int sz_cmd # Size of command string + +int curval, clgcur() + +begin + curval = clgcur (cur, wx, wy, wcs, key, cmd, sz_cmd) + if (key == 'q') + curval = EOF + + return (curval) +end -- cgit