diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-12-14 17:14:30 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-12-14 17:14:30 (GMT) |
commit | fcbdc9136aeaa70ec26a4ed0f5923aeb0ad93451 (patch) | |
tree | d4a5fd3dc1f75d03695f86ae55b39345fb011230 /ds9 | |
parent | c18918976d098c542e4675ddebe5b59525277525 (diff) | |
download | blt-fcbdc9136aeaa70ec26a4ed0f5923aeb0ad93451.zip blt-fcbdc9136aeaa70ec26a4ed0f5923aeb0ad93451.tar.gz blt-fcbdc9136aeaa70ec26a4ed0f5923aeb0ad93451.tar.bz2 |
avoid segv
Diffstat (limited to 'ds9')
-rw-r--r-- | ds9/doc/release/r8.1.html | 1 | ||||
-rw-r--r-- | ds9/make.include | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/ds9/doc/release/r8.1.html b/ds9/doc/release/r8.1.html index abafda0..ebd9e0a 100644 --- a/ds9/doc/release/r8.1.html +++ b/ds9/doc/release/r8.1.html @@ -21,6 +21,7 @@ <li><tt>11.26.2018 TCL/TK: updated to version 8.6.9.</tt></li> <li><tt>12.07.2018 CONTOUR: merge old and new contour parsers so that regardless of file extension, the file will be correctly parsed.</tt></li> <li><tt>12.10.2018 CONTOUR: LEVELS command now takes one numeric in addition to a string.</tt></li> +<li><tt>12.14.2018 GRID: add checks to avoid NULL pointers in cases of odd WCS defs.</tt></li> <li><tt><b>xx.xx.2018 RELEASE version 8.1b1</b></tt></li> </ol> </div> diff --git a/ds9/make.include b/ds9/make.include index 37a7189..0d0e028 100644 --- a/ds9/make.include +++ b/ds9/make.include @@ -7,13 +7,13 @@ vpath %.fcl $(prefix)/ds9/parsers # -w generate warnings # -d generate lexer table $(prefix)/ds9/parsers/%parser.tcl : %parser.tac -# tclsh $(prefix)/taccle/taccle.tcl -p $* -d $< - tclsh $(prefix)/taccle/taccle.tcl -p $* -d -w -v $< + tclsh $(prefix)/taccle/taccle.tcl -p $* -d $< +# tclsh $(prefix)/taccle/taccle.tcl -p $* -d -w -v $< # -d debug $(prefix)/ds9/parsers/%lex.tcl : %lex.fcl -# tclsh $(prefix)/fickle/fickle.tcl -P $* $< - tclsh $(prefix)/fickle/fickle.tcl -P $* -d $< + tclsh $(prefix)/fickle/fickle.tcl -P $* $< +# tclsh $(prefix)/fickle/fickle.tcl -P $* -d $< #--------------------------library |