diff options
author | dgp@users.sourceforge.net <dgp> | 2001-08-01 16:21:11 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2001-08-01 16:21:11 (GMT) |
commit | 73da871c94ff66eb9b314fb09a75a7124968bbd4 (patch) | |
tree | 38846cbe94cc8aac068898282ced4624f130770e /unix/mkLinks | |
parent | 2acf69a713e833db0ee374542978d48ef0ee583e (diff) | |
download | tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.zip tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.tar.gz tk-73da871c94ff66eb9b314fb09a75a7124968bbd4.tar.bz2 |
Merged changes from feature branch dgp-privates-into-namespace,
implementing TIP 44. All Tk commands and variables matching
tk[A-Z]* are now in the ::tk namespace.
Diffstat (limited to 'unix/mkLinks')
-rw-r--r-- | unix/mkLinks | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index 79155ea..9e9079d 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -28,10 +28,6 @@ if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then exit fi -if test -r SetClassProcs.3; then - rm -f Tk_SetClassProcs.3 - ln SetClassProcs.3 Tk_SetClassProcs.3 -fi if test -r 3DBorder.3; then rm -f Tk_Alloc3DBorderFromObj.3 rm -f Tk_Get3DBorder.3 @@ -570,6 +566,10 @@ if test -r SetClass.3; then ln SetClass.3 Tk_SetClass.3 ln SetClass.3 Tk_Class.3 fi +if test -r SetClassProcs.3; then + rm -f Tk_SetClassProcs.3 + ln SetClassProcs.3 Tk_SetClassProcs.3 +fi if test -r SetGrid.3; then rm -f Tk_SetGrid.3 rm -f Tk_UnsetGrid.3 @@ -706,6 +706,10 @@ if test -r getOpenFile.n; then ln getOpenFile.n tk_getOpenFile.n ln getOpenFile.n tk_getSaveFile.n fi +if test -r menu.n; then + rm -f tk_menuSetFocus.n + ln menu.n tk_menuSetFocus.n +fi if test -r menubar.n; then rm -f tk_menuBar.n rm -f tk_bindForTraversal.n @@ -730,4 +734,12 @@ if test -r popup.n; then rm -f tk_popup.n ln popup.n tk_popup.n fi +if test -r text.n; then + rm -f tk_textCopy.n + rm -f tk_textCut.n + rm -f tk_textPaste.n + ln text.n tk_textCopy.n + ln text.n tk_textCut.n + ln text.n tk_textPaste.n +fi exit 0 |