I'm trying tkcvs7.0 on Unix and hit upon a problem when i use the file menu option 'Report|CVS_status'. Selecting a file and using this option raises an error complaining about 'cmd_options' not being found.
When I looked into the file 'cvs.tcl' i found that in version 1.77 of the file the lines:
if {$cvscfg(recurse) || $filelist == $cvscfg(thisdir)} {
set cmd_options ""
} else {
set cmd_options "-l"
}
was changed to:
if {$cvscfg(recurse)} {
set cmd_options "-l"
}
when i explicitly set cmd_options the status command works as expected.
i'm not sure if perhaps i've some old setting in my .tkcvs file from earlier versions that may be affecting the status command or not...
but it may be a small bugoo.
cheers
paul
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I'm trying tkcvs7.0 on Unix and hit upon a problem when i use the file menu option 'Report|CVS_status'. Selecting a file and using this option raises an error complaining about 'cmd_options' not being found.
When I looked into the file 'cvs.tcl' i found that in version 1.77 of the file the lines:
if {$cvscfg(recurse) || $filelist == $cvscfg(thisdir)} {
set cmd_options ""
} else {
set cmd_options "-l"
}
was changed to:
if {$cvscfg(recurse)} {
set cmd_options "-l"
}
when i explicitly set cmd_options the status command works as expected.
i'm not sure if perhaps i've some old setting in my .tkcvs file from earlier versions that may be affecting the status command or not...
but it may be a small bugoo.
cheers
paul
A fix (actually a reversion to the previous code) is now in the patches. It's patch #455556.