Browse Source

typeo fix for stty call in punk::repl

master
Julian Noble 2 months ago
parent
commit
2bc0c74554
  1. 2
      src/modules/punk/repl-0.1.tm

2
src/modules/punk/repl-0.1.tm

@ -1387,7 +1387,7 @@ proc repl::repl_handler {inputchan prompt_config} {
set sttycmd [auto_execok stty]
if {$sttycmd ne ""} {
#the more parseable: stty -g doesn't give rows/columns
if {![catch {exec {*}$sttycmd -a} result} {
if {![catch {exec {*}$sttycmd -a} result]} {
lassign [split $result \n] firstline
set lineparts [split $firstline {;}] ;#we seem to get segments that look well behaved enough to be treated as tcl lists - review - regex?
set rowinfo [lsearch $lineparts -index end -inline $lineparts rows]

Loading…
Cancel
Save