diff options
author | drh <drh@sqlite.org> | 2002-07-19 14:37:21 (GMT) |
---|---|---|
committer | drh <drh@sqlite.org> | 2002-07-19 14:37:21 (GMT) |
commit | 300f9d752f0e612631b9224f3c6a68054e2a6476 (patch) | |
tree | 4b4130361c7843ca788134875d6d9288bec5768c /library/mkpsenc.tcl | |
parent | 3cc4fef5eb948a107677c26702a1872ffc1b6d60 (diff) | |
download | tk-300f9d752f0e612631b9224f3c6a68054e2a6476.zip tk-300f9d752f0e612631b9224f3c6a68054e2a6476.tar.gz tk-300f9d752f0e612631b9224f3c6a68054e2a6476.tar.bz2 |
Oops. Minor fix to the previous fix.
Diffstat (limited to 'library/mkpsenc.tcl')
-rw-r--r-- | library/mkpsenc.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/mkpsenc.tcl b/library/mkpsenc.tcl index e7fce19..bc3c243 100644 --- a/library/mkpsenc.tcl +++ b/library/mkpsenc.tcl @@ -10,7 +10,7 @@ proc ::tk::CreatePostscriptEncoding {encoding} { for {set i 0} {$i<256} {incr i 8} { for {set j 0} {$j<8} {incr j} { set enc [encoding convertfrom $encoding [format %c [expr {$i+$j}]]] - if {[catch {format %04X [scan $enc %c]} hexcode]} continue + if {[catch {format %04X [scan $enc %c]} hexcode]} {set hexcode {}} if [info exists ::tk::psglyphs($hexcode)] { append result "/$::tk::psglyphs($hexcode)" } else { @@ -1089,7 +1089,7 @@ append ps_preamable { 50 dict begin % This is a standard prolog for Postscript generated by Tk's canvas % widget. -% RCS: @(#) $Id: mkpsenc.tcl,v 1.2 2002/07/19 14:27:45 drh Exp $ +% RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $ % The definitions below just define all of the variables used in % any of the procedures here. This is needed for obscure reasons |