A Widget Library
View Ticket
Not logged in
Ticket UUID: cbc4b72a818741a4ba38d33282a90499249f025e
Title: R Project
Type: RFE Version:
Submitter: anonymous Created on: 2025-06-17 18:01:54
Subsystem: (unused) Assigned To: aku
Priority: 5 Medium Severity: Minor
Status: Closed Last Modified: 2025-07-08 13:25:25
Resolution: Accepted Closed By: aku
    Closed on: 2025-07-08 13:25:25
Description:
The R devs copied from this library some files.

$ svn log -r r9653 R
------------------------------------------------------------------------
r9653 | tlumley | 2000-06-23 17:11:24 -0500 (Fri, 23 Jun 2000) | 2 lines

added Tk directory browser and support code

------------------------------------------------------------------------
$ 

hierarchy.tcl
pkgIndex.tcl
util-dump.tcl
util-expand.tcl
util-number.tcl
util-string.tcl
util-tk.tcl
util.tcl
widget.tcl

Looking at the R source subdirectory src/library/tcltk/exec exposed a few typos.

Would the library devs consider to implement these GNU sed commands to fix them?

$ cat typos.sh
#!/bin/sh

sed -i "s/Specifis/Specifies/g" library/hierarchy.tcl
sed -i "s/forknowledge/foreknowledge/g" library/hierarchy.tcl
sed -i "s/hierachical/hierarchical/g" library/hierarchy.tcl
sed -i "s/hierachy/hierarchy/g" library/hierarchy.tcl
sed -i "s/ie /i.e. /g" library/hierarchy.tcl
sed -i "s/occured/occurred/g" library/hierarchy.tcl
$


In addition to the above fixes - which are likewise in the patch - here's another fix.

sed -i "s/unkown/unknown/g" library/hierarchy.tcl
User Comments: aku added on 2025-07-08 13:25:25:

Thanks for the submission. Apologies for the delay in application. See commit [2c42160bbf6e0a26].


Attachments: