diff options
Diffstat (limited to 'library/history.tcl')
-rw-r--r-- | library/history.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/history.tcl b/library/history.tcl index 1fbb4ed..888d144 100644 --- a/library/history.tcl +++ b/library/history.tcl @@ -254,7 +254,7 @@ proc history {args} { if {![info exists history($i)]} { continue } - set cmd [string map [list \n \n\t] [string trimright $history($i) \ \n]] + set cmd [string map [list \n \n\t] [string trimright $history($i) \ \n]] append result $newline[format "%6d %s" $i $cmd] set newline \n } |