# Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. #.rst: # Dart # ---- # # Configure a project for testing with CTest or old Dart Tcl Client # # This file is the backwards-compatibility version of the CTest module. # It supports using the old Dart 1 Tcl client for driving dashboard # submissions as well as testing with CTest. This module should be # included in the CMakeLists.txt file at the top of a project. Typical # usage: # # :: # # include(Dart) # if(BUILD_TESTING) # # ... testing related CMake code ... # endif() # # The BUILD_TESTING option is created by the Dart module to determine # whether testing support should be enabled. The default is ON. # This file configures a project to use the Dart testing/dashboard process. # It is broken into 3 sections. # # Section #1: Locate programs on the client and determine site and build name # Section #2: Configure or copy Tcl scripts from the source tree to build tree # Section #3: Custom targets for performing dashboard builds. # # option(BUILD_TESTING "Build the testing tree." ON) if(BUILD_TESTING) find_package(Dart QUIET) # # Section #1: # # CMake commands that will not vary from project to project. Locates programs # on the client and configure site name and build name. # set(RUN_FROM_DART 1) include(CTest) set(RUN_FROM_DART) find_program(COMPRESSIONCOMMAND NAMES gzip compress zip DOC "Path to program used to compress files for transfer to the dart server") find_program(GUNZIPCOMMAND gunzip DOC "Path to gunzip executable") find_program(JAVACOMMAND java DOC "Path to java command, used by the Dart server to create html.") option(DART_VERBOSE_BUILD "Show the actual output of the build, or if off show a . for each 1024 bytes." OFF) option(DART_BUILD_ERROR_REPORT_LIMIT "Limit of reported errors, -1 reports all." -1 ) option(DART_BUILD_WARNING_REPORT_LIMIT "Limit of reported warnings, -1 reports all." -1 ) set(VERBOSE_BUILD ${DART_VERBOSE_BUILD}) set(BUILD_ERROR_REPORT_LIMIT ${DART_BUILD_ERROR_REPORT_LIMIT}) set(BUILD_WARNING_REPORT_LIMIT ${DART_BUILD_WARNING_REPORT_LIMIT}) set (DELIVER_CONTINUOUS_EMAIL "Off" CACHE BOOL "Should Dart server send email when build errors are found in Continuous builds?") mark_as_advanced( COMPRESSIONCOMMAND DART_BUILD_ERROR_REPORT_LIMIT DART_BUILD_WARNING_REPORT_LIMIT DART_TESTING_TIMEOUT DART_VERBOSE_BUILD DELIVER_CONTINUOUS_EMAIL GUNZIPCOMMAND JAVACOMMAND ) set(HAVE_DART) if(EXISTS "${DART_ROOT}/Source/Client/Dart.conf.in") set(HAVE_DART 1) endif() # # Section #2: # # Make necessary directories and configure testing scripts # # find a tcl shell command if(HAVE_DART) find_package(Tclsh) endif() if (HAVE_DART) # make directories in the binary tree file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Dashboard" "${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Sites/${SITE}/${BUILDNAME}") # configure files configure_file( "${DART_ROOT}/Source/Client/Dart.conf.in" "${PROJECT_BINARY_DIR}/DartConfiguration.tcl" ) # # Section 3: # # Custom targets to perform dashboard builds and submissions. # These should NOT need to be modified from project to project. # # add testing targets set(DART_EXPERIMENTAL_NAME Experimental) if(DART_EXPERIMENTAL_USE_PROJECT_NAME) string(APPEND DART_EXPERIMENTAL_NAME "${PROJECT_NAME}") endif() endif () set(RUN_FROM_CTEST_OR_DART 1) include(CTestTargets) set(RUN_FROM_CTEST_OR_DART) endif() # # End of Dart.cmake # lor.n | 2 -- doc/chooseDirectory.n | 2 -- doc/clipboard.n | 2 -- doc/colors.n | 2 -- doc/console.n | 2 -- doc/cursors.n | 3 --- doc/destroy.n | 2 -- doc/dialog.n | 2 -- doc/entry.n | 2 -- doc/event.n | 2 -- doc/focus.n | 2 -- doc/focusNext.n | 2 -- doc/font.n | 2 -- doc/frame.n | 3 --- doc/getOpenFile.n | 2 -- doc/grab.n | 2 -- doc/grid.n | 2 -- doc/image.n | 2 -- doc/keysyms.n | 3 --- doc/label.n | 2 -- doc/labelframe.n | 3 --- doc/listbox.n | 2 -- doc/loadTk.n | 2 -- doc/lower.n | 2 -- doc/menu.n | 2 -- doc/menubar.n | 2 -- doc/menubutton.n | 2 -- doc/message.n | 2 -- doc/messageBox.n | 2 -- doc/option.n | 2 -- doc/optionMenu.n | 2 -- doc/options.n | 2 -- doc/pack-old.n | 2 -- doc/pack.n | 2 -- doc/palette.n | 2 -- doc/panedwindow.n | 2 -- doc/photo.n | 2 -- doc/place.n | 2 -- doc/popup.n | 2 -- doc/radiobutton.n | 2 -- doc/raise.n | 2 -- doc/scale.n | 2 -- doc/scrollbar.n | 2 -- doc/selection.n | 2 -- doc/send.n | 2 -- doc/spinbox.n | 2 -- doc/text.n | 2 -- doc/tk.n | 2 -- doc/tkerror.n | 2 -- doc/tkvars.n | 2 -- doc/tkwait.n | 2 -- doc/toplevel.n | 2 -- doc/winfo.n | 2 -- doc/wish.1 | 2 -- doc/wm.n | 2 -- generic/README | 2 -- generic/default.h | 2 -- generic/ks_names.h | 1 - generic/prolog.ps | 1 - generic/tk.decls | 2 -- generic/tk.h | 2 -- generic/tk3d.c | 2 -- generic/tk3d.h | 2 -- generic/tkArgv.c | 2 -- generic/tkAtom.c | 2 -- generic/tkBind.c | 2 -- generic/tkBitmap.c | 2 -- generic/tkButton.c | 2 -- generic/tkButton.h | 2 -- generic/tkCanvArc.c | 2 -- generic/tkCanvBmap.c | 2 -- generic/tkCanvImg.c | 2 -- generic/tkCanvLine.c | 2 -- generic/tkCanvPoly.c | 2 -- generic/tkCanvPs.c | 2 -- generic/tkCanvText.c | 2 -- generic/tkCanvUtil.c | 2 -- generic/tkCanvWind.c | 2 -- generic/tkCanvas.c | 2 -- generic/tkCanvas.h | 2 -- generic/tkClipboard.c | 2 -- generic/tkCmds.c | 2 -- generic/tkColor.c | 2 -- generic/tkColor.h | 2 -- generic/tkConfig.c | 2 -- generic/tkConsole.c | 2 -- generic/tkCursor.c | 2 -- generic/tkDecls.h | 2 -- generic/tkEntry.c | 2 -- generic/tkError.c | 2 -- generic/tkEvent.c | 2 -- generic/tkFileFilter.c | 2 -- generic/tkFileFilter.h | 3 --- generic/tkFocus.c | 2 -- generic/tkFont.c | 2 -- generic/tkFont.h | 2 -- generic/tkFrame.c | 2 -- generic/tkGC.c | 2 -- generic/tkGeometry.c | 2 -- generic/tkGet.c | 2 -- generic/tkGrab.c | 2 -- generic/tkGrid.c | 2 -- generic/tkImage.c | 2 -- generic/tkImgBmap.c | 2 -- generic/tkImgGIF.c | 2 -- generic/tkImgPPM.c | 2 -- generic/tkImgPhoto.c | 2 -- generic/tkImgUtil.c | 2 -- generic/tkInitScript.h | 2 -- generic/tkInt.decls | 2 -- generic/tkInt.h | 2 -- generic/tkIntDecls.h | 2 -- generic/tkIntPlatDecls.h | 2 -- generic/tkIntXlibDecls.h | 2 -- generic/tkListbox.c | 2 -- generic/tkMacWinMenu.c | 2 -- generic/tkMain.c | 2 -- generic/tkMenu.c | 2 -- generic/tkMenu.h | 2 -- generic/tkMenuDraw.c | 2 -- generic/tkMenubutton.c | 2 -- generic/tkMenubutton.h | 2 -- generic/tkMessage.c | 2 -- generic/tkObj.c | 2 -- generic/tkOldConfig.c | 2 -- generic/tkOption.c | 2 -- generic/tkPack.c | 2 -- generic/tkPanedWindow.c | 2 -- generic/tkPlace.c | 2 -- generic/tkPlatDecls.h | 2 -- generic/tkPointer.c | 2 -- generic/tkPort.h | 2 -- generic/tkRectOval.c | 2 -- generic/tkScale.c | 2 -- generic/tkScale.h | 2 -- generic/tkScrollbar.c | 2 -- generic/tkScrollbar.h | 2 -- generic/tkSelect.c | 2 -- generic/tkSelect.h | 2 -- generic/tkSquare.c | 2 -- generic/tkStubImg.c | 2 -- generic/tkStubInit.c | 2 -- generic/tkStubLib.c | 2 -- generic/tkStyle.c | 2 -- generic/tkTest.c | 2 -- generic/tkText.c | 2 -- generic/tkText.h | 2 -- generic/tkTextBTree.c | 2 -- generic/tkTextDisp.c | 2 -- generic/tkTextImage.c | 2 -- generic/tkTextIndex.c | 2 -- generic/tkTextMark.c | 2 -- generic/tkTextTag.c | 2 -- generic/tkTextWind.c | 2 -- generic/tkTrig.c | 2 -- generic/tkUndo.c | 2 -- generic/tkUndo.h | 2 -- generic/tkUtil.c | 2 -- generic/tkVisual.c | 2 -- generic/tkWindow.c | 2 -- library/bgerror.tcl | 3 --- library/button.tcl | 2 -- library/choosedir.tcl | 2 -- library/clrpick.tcl | 2 -- library/comdlg.tcl | 2 -- library/console.tcl | 2 -- library/demos/README | 2 -- library/demos/arrow.tcl | 2 -- library/demos/bind.tcl | 2 -- library/demos/bitmap.tcl | 2 -- library/demos/browse | 2 -- library/demos/button.tcl | 2 -- library/demos/check.tcl | 2 -- library/demos/clrpick.tcl | 2 -- library/demos/colors.tcl | 2 -- library/demos/cscroll.tcl | 2 -- library/demos/ctext.tcl | 2 -- library/demos/dialog1.tcl | 2 -- library/demos/dialog2.tcl | 2 -- library/demos/entry1.tcl | 2 -- library/demos/entry2.tcl | 2 -- library/demos/entry3.tcl | 2 -- library/demos/filebox.tcl | 2 -- library/demos/floor.tcl | 2 -- library/demos/form.tcl | 2 -- library/demos/hello | 2 -- library/demos/hscale.tcl | 2 -- library/demos/icon.tcl | 2 -- library/demos/image1.tcl | 2 -- library/demos/image2.tcl | 2 -- library/demos/items.tcl | 2 -- library/demos/ixset | 2 -- library/demos/label.tcl | 2 -- library/demos/labelframe.tcl | 2 -- library/demos/menu.tcl | 2 -- library/demos/menubu.tcl | 2 -- library/demos/msgbox.tcl | 2 -- library/demos/paned1.tcl | 2 -- library/demos/paned2.tcl | 2 -- library/demos/plot.tcl | 2 -- library/demos/puzzle.tcl | 2 -- library/demos/radio.tcl | 2 -- library/demos/rmt | 2 -- library/demos/rolodex | 2 -- library/demos/ruler.tcl | 2 -- library/demos/sayings.tcl | 2 -- library/demos/search.tcl | 2 -- library/demos/spin.tcl | 2 -- library/demos/square | 2 -- library/demos/states.tcl | 2 -- library/demos/style.tcl | 2 -- library/demos/tcolor | 2 -- library/demos/text.tcl | 2 -- library/demos/timer | 2 -- library/demos/twind.tcl | 2 -- library/demos/unicodeout.tcl | 2 -- library/demos/vscale.tcl | 2 -- library/demos/widget | 2 -- library/dialog.tcl | 2 -- library/entry.tcl | 2 -- library/focus.tcl | 2 -- library/images/README | 5 ----- library/listbox.tcl | 2 -- library/menu.tcl | 2 -- library/mkpsenc.tcl | 1 - library/msgbox.tcl | 2 -- library/obsolete.tcl | 2 -- library/optMenu.tcl | 2 -- library/palette.tcl | 2 -- library/panedwindow.tcl | 3 --- library/prolog.ps | 1 - library/safetk.tcl | 2 -- library/scale.tcl | 2 -- library/scrlbar.tcl | 2 -- library/spinbox.tcl | 2 -- library/tearoff.tcl | 2 -- library/text.tcl | 2 -- library/tk.tcl | 2 -- library/tkfbox.tcl | 2 -- library/unsupported.tcl | 2 -- library/xmfbox.tcl | 2 -- mac/MW_TkBuildLibHeader.pch | 2 -- mac/MW_TkHeader.pch | 2 -- mac/MW_TkHeaderCommon.h | 2 -- mac/MW_TkStaticHeader.pch | 2 -- mac/MW_TkTestHeader.pch | 2 -- mac/README | 2 -- mac/bugs.doc | 2 -- mac/tclets.tcl | 2 -- mac/tkMac.h | 2 -- mac/tkMacAppInit.c | 2 -- mac/tkMacApplication.r | 2 -- mac/tkMacBitmap.c | 2 -- mac/tkMacButton.c | 2 -- mac/tkMacClipboard.c | 2 -- mac/tkMacColor.c | 2 -- mac/tkMacConfig.c | 2 -- mac/tkMacCursor.c | 2 -- mac/tkMacCursors.r | 2 -- mac/tkMacDefault.h | 2 -- mac/tkMacDialog.c | 2 -- mac/tkMacDraw.c | 2 -- mac/tkMacEmbed.c | 2 -- mac/tkMacFont.c | 2 -- mac/tkMacHLEvents.c | 2 -- mac/tkMacInit.c | 2 -- mac/tkMacInt.h | 2 -- mac/tkMacKeyboard.c | 2 -- mac/tkMacLibrary.r | 2 -- mac/tkMacMDEF.c | 2 -- mac/tkMacMDEF.r | 2 -- mac/tkMacMenu.c | 2 -- mac/tkMacMenu.r | 2 -- mac/tkMacMenubutton.c | 2 -- mac/tkMacMenus.c | 2 -- mac/tkMacPort.h | 2 -- mac/tkMacRegion.c | 2 -- mac/tkMacResource.r | 2 -- mac/tkMacScale.c | 2 -- mac/tkMacScrlbr.c | 2 -- mac/tkMacSend.c | 2 -- mac/tkMacSubwindows.c | 2 -- mac/tkMacTclCode.r | 2 -- mac/tkMacTest.c | 2 -- mac/tkMacWindowMgr.c | 2 -- mac/tkMacWm.c | 2 -- mac/tkMacXCursors.r | 2 -- mac/tkMacXStubs.c | 2 -- macosx/Makefile | 2 -- macosx/README | 2 -- macosx/Tk-Info.plist.in | 2 -- macosx/Wish-Info.plist.in | 2 -- macosx/tkAboutDlg.r | 2 -- macosx/tkMacOSX.h | 2 -- macosx/tkMacOSXAETE.r | 2 -- macosx/tkMacOSXBitmap.c | 2 -- macosx/tkMacOSXButton.c | 2 -- macosx/tkMacOSXCarbonEvents.c | 2 -- macosx/tkMacOSXClipboard.c | 2 -- macosx/tkMacOSXColor.c | 2 -- macosx/tkMacOSXConfig.c | 2 -- macosx/tkMacOSXCursor.c | 2 -- macosx/tkMacOSXCursors.r | 2 -- macosx/tkMacOSXDebug.c | 2 -- macosx/tkMacOSXDebug.h | 2 -- macosx/tkMacOSXDefault.h | 2 -- macosx/tkMacOSXDialog.c | 2 -- macosx/tkMacOSXDraw.c | 2 -- macosx/tkMacOSXEmbed.c | 2 -- macosx/tkMacOSXEntry.c | 2 -- macosx/tkMacOSXEvent.c | 2 -- macosx/tkMacOSXEvent.h | 2 -- macosx/tkMacOSXFont.c | 2 -- macosx/tkMacOSXFont.h | 2 -- macosx/tkMacOSXHLEvents.c | 2 -- macosx/tkMacOSXInit.c | 2 -- macosx/tkMacOSXInt.h | 2 -- macosx/tkMacOSXKeyEvent.c | 2 -- macosx/tkMacOSXKeyboard.c | 2 -- macosx/tkMacOSXMenu.c | 2 -- macosx/tkMacOSXMenubutton.c | 2 -- macosx/tkMacOSXMenus.c | 2 -- macosx/tkMacOSXMouseEvent.c | 2 -- macosx/tkMacOSXNotify.c | 2 -- macosx/tkMacOSXPort.h | 2 -- macosx/tkMacOSXPrivate.h | 2 -- macosx/tkMacOSXRegion.c | 2 -- macosx/tkMacOSXScale.c | 2 -- macosx/tkMacOSXScrlbr.c | 2 -- macosx/tkMacOSXSend.c | 2 -- macosx/tkMacOSXSubwindows.c | 2 -- macosx/tkMacOSXTest.c | 2 -- macosx/tkMacOSXWindowEvent.c | 2 -- macosx/tkMacOSXWm.c | 2 -- macosx/tkMacOSXWm.h | 2 -- macosx/tkMacOSXXCursors.r | 2 -- macosx/tkMacOSXXStubs.c | 2 -- tests/README | 2 -- tests/all.tcl | 2 -- tests/arc.tcl | 2 -- tests/bell.test | 2 -- tests/bevel.tcl | 2 -- tests/bgerror.test | 2 -- tests/bind.test | 2 -- tests/bitmap.test | 2 -- tests/border.test | 2 -- tests/bugs.tcl | 2 -- tests/butGeom.tcl | 2 -- tests/butGeom2.tcl | 2 -- tests/button.test | 2 -- tests/canvImg.test | 2 -- tests/canvPs.test | 2 -- tests/canvPsArc.tcl | 2 -- tests/canvPsBmap.tcl | 2 -- tests/canvPsGrph.tcl | 2 -- tests/canvPsImg.tcl | 2 -- tests/canvPsText.tcl | 2 -- tests/canvRect.test | 2 -- tests/canvText.test | 2 -- tests/canvWind.test | 2 -- tests/canvas.test | 2 -- tests/choosedir.test | 3 --- tests/clipboard.test | 2 -- tests/clrpick.test | 3 --- tests/cmap.tcl | 2 -- tests/cmds.test | 2 -- tests/color.test | 2 -- tests/config.test | 2 -- tests/cursor.test | 2 -- tests/dialog.test | 3 --- tests/embed.test | 2 -- tests/entry.test | 2 -- tests/event.test | 2 -- tests/filebox.test | 3 --- tests/focus.test | 2 -- tests/focusTcl.test | 2 -- tests/font.test | 2 -- tests/frame.test | 2 -- tests/geometry.test | 2 -- tests/get.test | 2 -- tests/grab.test | 2 -- tests/grid.test | 2 -- tests/id.test | 2 -- tests/image.test | 2 -- tests/imgBmap.test | 2 -- tests/imgPPM.test | 2 -- tests/imgPhoto.test | 2 -- tests/listbox.test | 2 -- tests/macEmbed.test | 2 -- tests/macFont.test | 2 -- tests/macMenu.test | 2 -- tests/macWinMenu.test | 2 -- tests/macscrollbar.test | 2 -- tests/main.test | 2 -- tests/menu.test | 2 -- tests/menuDraw.test | 2 -- tests/menubut.test | 2 -- tests/message.test | 2 -- tests/msgbox.test | 3 --- tests/obj.test | 2 -- tests/oldpack.test | 2 -- tests/option.test | 2 -- tests/pack.test | 2 -- tests/panedwindow.test | 2 -- tests/place.test | 2 -- tests/raise.test | 2 -- tests/safe.test | 2 -- tests/scale.test | 2 -- tests/scrollbar.test | 2 -- tests/select.test | 2 -- tests/send.test | 2 -- tests/spinbox.test | 2 -- tests/text.test | 2 -- tests/textBTree.test | 2 -- tests/textDisp.test | 2 -- tests/textImage.test | 2 -- tests/textIndex.test | 2 -- tests/textMark.test | 2 -- tests/textTag.test | 2 -- tests/textWind.test | 2 -- tests/tk.test | 2 -- tests/unixButton.test | 2 -- tests/unixEmbed.test | 2 -- tests/unixFont.test | 2 -- tests/unixMenu.test | 2 -- tests/unixSelect.test | 2 -- tests/unixWm.test | 2 -- tests/util.test | 2 -- tests/visual.test | 2 -- tests/visual_bb.test | 2 -- tests/winButton.test | 2 -- tests/winClipboard.test | 2 -- tests/winDialog.test | 2 -- tests/winFont.test | 2 -- tests/winMenu.test | 2 -- tests/winSend.test | 2 -- tests/winWm.test | 2 -- tests/window.test | 2 -- tests/winfo.test | 2 -- tests/wm.test | 2 -- tests/xmfbox.test | 2 -- unix/Makefile.in | 2 -- unix/README | 2 -- unix/configure.in | 2 -- unix/tk.spec | 1 - unix/tkAppInit.c | 2 -- unix/tkConfig.sh.in | 2 -- unix/tkUnix.c | 2 -- unix/tkUnix3d.c | 2 -- unix/tkUnixButton.c | 2 -- unix/tkUnixColor.c | 2 -- unix/tkUnixConfig.c | 2 -- unix/tkUnixCursor.c | 2 -- unix/tkUnixDefault.h | 2 -- unix/tkUnixDialog.c | 3 --- unix/tkUnixDraw.c | 2 -- unix/tkUnixEmbed.c | 2 -- unix/tkUnixEvent.c | 2 -- unix/tkUnixFocus.c | 2 -- unix/tkUnixFont.c | 2 -- unix/tkUnixInit.c | 2 -- unix/tkUnixInt.h | 2 -- unix/tkUnixKey.c | 2 -- unix/tkUnixMenu.c | 2 -- unix/tkUnixMenubu.c | 2 -- unix/tkUnixPort.h | 2 -- unix/tkUnixScale.c | 2 -- unix/tkUnixScrlbr.c | 2 -- unix/tkUnixSelect.c | 2 -- unix/tkUnixSend.c | 2 -- unix/tkUnixWm.c | 2 -- unix/tkUnixXId.c | 2 -- win/Makefile.in | 2 -- win/README | 2 -- win/buildall.vc.bat | 2 -- win/configure.in | 2 -- win/makefile.bc | 2 -- win/makefile.vc | 3 --- win/mkd.bat | 1 - win/nmakehlp.c | 3 --- win/rc/tk.rc | 1 - win/rc/tk_base.rc | 1 - win/rc/wish.rc | 1 - win/rmd.bat | 1 - win/rules.vc | 3 --- win/tkConfig.sh.in | 2 -- win/tkWin.h | 2 -- win/tkWin32Dll.c | 2 -- win/tkWin3d.c | 2 -- win/tkWinButton.c | 2 -- win/tkWinClipboard.c | 2 -- win/tkWinColor.c | 2 -- win/tkWinConfig.c | 2 -- win/tkWinCursor.c | 2 -- win/tkWinDefault.h | 2 -- win/tkWinDialog.c | 3 --- win/tkWinDraw.c | 2 -- win/tkWinEmbed.c | 2 -- win/tkWinFont.c | 2 -- win/tkWinImage.c | 2 -- win/tkWinInit.c | 2 -- win/tkWinInt.h | 2 -- win/tkWinKey.c | 2 -- win/tkWinMenu.c | 2 -- win/tkWinPixmap.c | 2 -- win/tkWinPointer.c | 2 -- win/tkWinPort.h | 2 -- win/tkWinRegion.c | 2 -- win/tkWinScrlbr.c | 2 -- win/tkWinSend.c | 2 -- win/tkWinTest.c | 2 -- win/tkWinWindow.c | 2 -- win/tkWinWm.c | 2 -- win/tkWinX.c | 2 -- win/winMain.c | 2 -- xlib/xbytes.h | 2 -- xlib/xcolors.c | 2 -- xlib/xdraw.c | 2 -- xlib/xgc.c | 2 -- xlib/ximage.c | 2 -- xlib/xutil.c | 2 -- 616 files changed, 1245 deletions(-) diff --git a/README b/README index 2093cdc..0794023 100644 --- a/README +++ b/README @@ -5,8 +5,6 @@ README: Tk You can get any source release of Tcl from the file distributions link at the above URL. -RCS: @(#) $Id: README,v 1.39.2.18 2008/04/07 19:17:54 dgp Exp $ - 1. Introduction --------------- diff --git a/changes b/changes index d4de646..0270bfc 100644 --- a/changes +++ b/changes @@ -2,8 +2,6 @@ This file summarizes all changes made to Tk since version 1.0 was released on March 13, 1991. Changes that aren't backward compatible are marked specially. -RCS: @(#) $Id: changes,v 1.64.2.55 2008/04/11 16:55:47 dgp Exp $ - 3/16/91 (bug fix) Modified tkWindow.c to remove Tk's Tcl commands from the interpreter when the main window is deleted (otherwise there will be dangling pointers to the non-existent window). diff --git a/compat/limits.h b/compat/limits.h index 1ffa1fb..2cb082b 100644 --- a/compat/limits.h +++ b/compat/limits.h @@ -12,8 +12,6 @@ * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: limits.h,v 1.2 1998/09/14 18:03:09 stanton Exp $ */ #define LONG_MIN 0x80000000 diff --git a/compat/stdlib.h b/compat/stdlib.h index 4b76fe5..4d1a386 100644 --- a/compat/stdlib.h +++ b/compat/stdlib.h @@ -13,8 +13,6 @@ * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: stdlib.h,v 1.3 1999/04/16 01:51:07 stanton Exp $ */ #ifndef _STDLIB diff --git a/compat/unistd.h b/compat/unistd.h index a7ec148..1a40e90 100644 --- a/compat/unistd.h +++ b/compat/unistd.h @@ -11,8 +11,6 @@ * makes no representations about the suitability of this * software for any purpose. It is provided "as is" without * express or implied warranty. - * - * RCS: @(#) $Id: unistd.h,v 1.2 1998/09/14 18:03:09 stanton Exp $ */ #ifndef _UNISTD diff --git a/doc/3DBorder.3 b/doc/3DBorder.3 index 4ad5803..35bf666 100644 --- a/doc/3DBorder.3 +++ b/doc/3DBorder.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: 3DBorder.3,v 1.4 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_Alloc3DBorderFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/AddOption.3 b/doc/AddOption.3 index 940904b..3de6c2f 100644 --- a/doc/AddOption.3 +++ b/doc/AddOption.3 @@ -1,9 +1,6 @@ '\" '\" Copyright (c) 1998-2000 by Scriptics Corporation. '\" All rights reserved. -'\" -'\" RCS: @(#) $Id: AddOption.3,v 1.2 2002/01/25 21:09:36 dgp Exp $ -'\" '\" .so man.macros .TH Tk_AddOption 3 "" Tk "Tk Library Procedures" diff --git a/doc/BindTable.3 b/doc/BindTable.3 index a4e9f28..438e586 100644 --- a/doc/BindTable.3 +++ b/doc/BindTable.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: BindTable.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_CreateBindingTable 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/CanvPsY.3 b/doc/CanvPsY.3 index af051ca..c0aff6d 100644 --- a/doc/CanvPsY.3 +++ b/doc/CanvPsY.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CanvPsY.3,v 1.5 2000/07/25 21:14:34 jenglish Exp $ -'\" .so man.macros .TH Tk_CanvasPs 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/CanvTkwin.3 b/doc/CanvTkwin.3 index 927b73e..fb8fff5 100644 --- a/doc/CanvTkwin.3 +++ b/doc/CanvTkwin.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CanvTkwin.3,v 1.3 2002/01/25 21:09:36 dgp Exp $ -'\" .so man.macros .TH Tk_CanvasTkwin 3 4.1 Tk "Tk Library Procedures" .BS diff --git a/doc/CanvTxtInfo.3 b/doc/CanvTxtInfo.3 index 0d9f829..7ffa07b 100644 --- a/doc/CanvTxtInfo.3 +++ b/doc/CanvTxtInfo.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CanvTxtInfo.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_CanvasTextInfo 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/Clipboard.3 b/doc/Clipboard.3 index d3f35d8..36c1726 100644 --- a/doc/Clipboard.3 +++ b/doc/Clipboard.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Clipboard.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_ClipboardClear 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/ClrSelect.3 b/doc/ClrSelect.3 index 1736848..961f2d7 100644 --- a/doc/ClrSelect.3 +++ b/doc/ClrSelect.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: ClrSelect.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_ClearSelection 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/ConfigWidg.3 b/doc/ConfigWidg.3 index 6d41953..c7a8c33 100644 --- a/doc/ConfigWidg.3 +++ b/doc/ConfigWidg.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: ConfigWidg.3,v 1.8.2.1 2003/10/06 22:15:17 dgp Exp $ -'\" .so man.macros .TH Tk_ConfigureWidget 3 4.1 Tk "Tk Library Procedures" .BS diff --git a/doc/ConfigWind.3 b/doc/ConfigWind.3 index c9f0089..7d77902 100644 --- a/doc/ConfigWind.3 +++ b/doc/ConfigWind.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: ConfigWind.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_ConfigureWindow 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/CoordToWin.3 b/doc/CoordToWin.3 index 93f81ee..f984f8e 100644 --- a/doc/CoordToWin.3 +++ b/doc/CoordToWin.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CoordToWin.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_CoordsToWindow 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/CrtCmHdlr.3 b/doc/CrtCmHdlr.3 index f64e79b..21bc386 100644 --- a/doc/CrtCmHdlr.3 +++ b/doc/CrtCmHdlr.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtCmHdlr.3,v 1.1 2000/06/03 08:57:34 hobbs Exp $ -'\" .so man.macros .TH Tk_CreateClientMessageHandler 3 "8.4" Tk "Tk Library Procedures" .BS diff --git a/doc/CrtErrHdlr.3 b/doc/CrtErrHdlr.3 index bde4f14..f123211 100644 --- a/doc/CrtErrHdlr.3 +++ b/doc/CrtErrHdlr.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtErrHdlr.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_CreateErrorHandler 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/CrtGenHdlr.3 b/doc/CrtGenHdlr.3 index be761b6..702ac30 100644 --- a/doc/CrtGenHdlr.3 +++ b/doc/CrtGenHdlr.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtGenHdlr.3,v 1.2 1998/09/14 18:22:46 stanton Exp $ -'\" .so man.macros .TH Tk_CreateGenericHandler 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/CrtImgType.3 b/doc/CrtImgType.3 index d762235..65061b3 100644 --- a/doc/CrtImgType.3 +++ b/doc/CrtImgType.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtImgType.3,v 1.6.2.1 2003/12/10 09:40:43 dkf Exp $ -'\" .so man.macros .TH Tk_CreateImageType 3 8.3 Tk "Tk Library Procedures" .BS diff --git a/doc/CrtItemType.3 b/doc/CrtItemType.3 index 8d5e357..f035bc2 100644 --- a/doc/CrtItemType.3 +++ b/doc/CrtItemType.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtItemType.3,v 1.6 2000/07/25 21:14:34 jenglish Exp $ -'\" .so man.macros .TH Tk_CreateItemType 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/CrtPhImgFmt.3 b/doc/CrtPhImgFmt.3 index 1b23eff..fa50d86 100644 --- a/doc/CrtPhImgFmt.3 +++ b/doc/CrtPhImgFmt.3 @@ -9,8 +9,6 @@ '\" Department of Computer Science, '\" Australian National University. '\" -'\" RCS: @(#) $Id: CrtPhImgFmt.3,v 1.5 2001/08/23 19:11:22 hobbs Exp $ -'\" .so man.macros .TH Tk_CreatePhotoImageFormat 3 8.3 Tk "Tk Library Procedures" .BS diff --git a/doc/CrtSelHdlr.3 b/doc/CrtSelHdlr.3 index 0e801a4..5a5c48b 100644 --- a/doc/CrtSelHdlr.3 +++ b/doc/CrtSelHdlr.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtSelHdlr.3,v 1.2 1998/09/14 18:22:47 stanton Exp $ -'\" .so man.macros .TH Tk_CreateSelHandler 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/CrtWindow.3 b/doc/CrtWindow.3 index e09fdef..a156581 100644 --- a/doc/CrtWindow.3 +++ b/doc/CrtWindow.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: CrtWindow.3,v 1.6 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_CreateWindow 3 4.2 Tk "Tk Library Procedures" .BS diff --git a/doc/DeleteImg.3 b/doc/DeleteImg.3 index 797b489..91bf63f 100644 --- a/doc/DeleteImg.3 +++ b/doc/DeleteImg.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: DeleteImg.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_DeleteImage 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/DrawFocHlt.3 b/doc/DrawFocHlt.3 index 9b6f6a0..688cfdb 100644 --- a/doc/DrawFocHlt.3 +++ b/doc/DrawFocHlt.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: DrawFocHlt.3,v 1.3 2000/03/31 09:23:48 hobbs Exp $ -'\" .so man.macros .TH Tk_DrawFocusHighlight 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/EventHndlr.3 b/doc/EventHndlr.3 index 3c9968b..3d8bb12 100644 --- a/doc/EventHndlr.3 +++ b/doc/EventHndlr.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: EventHndlr.3,v 1.4 1999/04/21 21:53:21 rjohnson Exp $ -'\" .so man.macros .TH Tk_CreateEventHandler 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/FindPhoto.3 b/doc/FindPhoto.3 index eb86eac..7e6ee5a 100644 --- a/doc/FindPhoto.3 +++ b/doc/FindPhoto.3 @@ -9,8 +9,6 @@ '\" Department of Computer Science, '\" Australian National University. '\" -'\" RCS: @(#) $Id: FindPhoto.3,v 1.6 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_FindPhoto 3 8.0 Tk "Tk Library Procedures" .BS diff --git a/doc/FontId.3 b/doc/FontId.3 index a787242..bed71c3 100644 --- a/doc/FontId.3 +++ b/doc/FontId.3 @@ -4,8 +4,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: FontId.3,v 1.3 2000/07/25 21:14:34 jenglish Exp $ -'\" .so man.macros .TH Tk_FontId 3 8.0 Tk "Tk Library Procedures" .BS diff --git a/doc/FreeXId.3 b/doc/FreeXId.3 index 6bb4bb8..c4ad889 100644 --- a/doc/FreeXId.3 +++ b/doc/FreeXId.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: FreeXId.3,v 1.4 1999/04/21 21:53:21 rjohnson Exp $ -'\" .so man.macros .TH Tk_FreeXId 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/GeomReq.3 b/doc/GeomReq.3 index 4390d18..4d8e788 100644 --- a/doc/GeomReq.3 +++ b/doc/GeomReq.3 @@ -5,9 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" -'\" RCS: @(#) $Id: GeomReq.3,v 1.3 2001/09/26 20:25:17 pspjuth Exp $ -'\" .so man.macros .TH Tk_GeometryRequest 3 "8.4" Tk "Tk Library Procedures" .BS diff --git a/doc/GetAnchor.3 b/doc/GetAnchor.3 index a992980..0b25cb0 100644 --- a/doc/GetAnchor.3 +++ b/doc/GetAnchor.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetAnchor.3,v 1.4 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetAnchorFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetBitmap.3 b/doc/GetBitmap.3 index bcebe97..69e319e 100644 --- a/doc/GetBitmap.3 +++ b/doc/GetBitmap.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetBitmap.3,v 1.5.2.1 2005/06/21 23:01:36 dkf Exp $ -'\" .so man.macros .TH Tk_AllocBitmapFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetCapStyl.3 b/doc/GetCapStyl.3 index 4cf3b50..e9cce7b 100644 --- a/doc/GetCapStyl.3 +++ b/doc/GetCapStyl.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetCapStyl.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetCapStyle 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetClrmap.3 b/doc/GetClrmap.3 index ebd08a0..3c288e9 100644 --- a/doc/GetClrmap.3 +++ b/doc/GetClrmap.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetClrmap.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetColormap 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/GetColor.3 b/doc/GetColor.3 index 8b122ca..201edab 100644 --- a/doc/GetColor.3 +++ b/doc/GetColor.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetColor.3,v 1.4 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_AllocColorFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetCursor.3 b/doc/GetCursor.3 index 4ceee0f..daca323 100644 --- a/doc/GetCursor.3 +++ b/doc/GetCursor.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetCursor.3,v 1.5 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_AllocCursorFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetDash.3 b/doc/GetDash.3 index 32954e6..ce25b31 100644 --- a/doc/GetDash.3 +++ b/doc/GetDash.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetDash.3,v 1.2 1999/12/22 23:01:33 hobbs Exp $ -'\" .so man.macros .TH Tk_GetDash 3 8.3 Tk "Tk Library Procedures" .BS diff --git a/doc/GetFont.3 b/doc/GetFont.3 index d408006..fbfa0e3 100644 --- a/doc/GetFont.3 +++ b/doc/GetFont.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetFont.3,v 1.5.2.1 2005/11/22 11:55:19 dkf Exp $ -'\" .so man.macros .TH Tk_AllocFontFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetGC.3 b/doc/GetGC.3 index 471bdfc..146b527 100644 --- a/doc/GetGC.3 +++ b/doc/GetGC.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetGC.3,v 1.2 1998/09/14 18:22:49 stanton Exp $ -'\" .so man.macros .TH Tk_GetGC 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetHINSTANCE.3 b/doc/GetHINSTANCE.3 index 8942105..4a13786 100644 --- a/doc/GetHINSTANCE.3 +++ b/doc/GetHINSTANCE.3 @@ -2,8 +2,6 @@ '\" Copyright (c) 1998-2000 by Scriptics Corporation. '\" All rights reserved. '\" -'\" RCS: @(#) $Id: GetHINSTANCE.3,v 1.2 2002/11/15 15:35:55 dkf Exp $ -'\" .so man.macros .TH Tk_GetHISTANCE 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetHWND.3 b/doc/GetHWND.3 index eb33db6..70fb0dd 100644 --- a/doc/GetHWND.3 +++ b/doc/GetHWND.3 @@ -2,9 +2,6 @@ '\" Copyright (c) 1998-2000 by Scriptics Corporation. '\" All rights reserved. '\" -'\" RCS: @(#) $Id: GetHWND.3,v 1.2.8.1 2003/10/13 00:55:08 hobbs Exp $ -'\" -'\" .so man.macros .TH HWND 3 8.0 Tk "Tk Library Procedures" .BS diff --git a/doc/GetImage.3 b/doc/GetImage.3 index 6b78dc4..aefd9b9 100644 --- a/doc/GetImage.3 +++ b/doc/GetImage.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetImage.3,v 1.5 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetImage 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/GetJoinStl.3 b/doc/GetJoinStl.3 index 1139582..d2e45dd 100644 --- a/doc/GetJoinStl.3 +++ b/doc/GetJoinStl.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetJoinStl.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetJoinStyle 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetJustify.3 b/doc/GetJustify.3 index 384ce5d..5f60336 100644 --- a/doc/GetJustify.3 +++ b/doc/GetJustify.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetJustify.3,v 1.4 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetJustifyFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetOption.3 b/doc/GetOption.3 index 909b044..de09f9b 100644 --- a/doc/GetOption.3 +++ b/doc/GetOption.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetOption.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetOption 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetPixels.3 b/doc/GetPixels.3 index 7330018..a89c8d1 100644 --- a/doc/GetPixels.3 +++ b/doc/GetPixels.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetPixels.3,v 1.4 2002/01/25 21:09:36 dgp Exp $ -'\" .so man.macros .TH Tk_GetPixelsFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetPixmap.3 b/doc/GetPixmap.3 index a8cb5e1..9e9628a 100644 --- a/doc/GetPixmap.3 +++ b/doc/GetPixmap.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetPixmap.3,v 1.2 1998/09/14 18:22:50 stanton Exp $ -'\" .so man.macros .TH Tk_GetPixmap 3 4.0 Tk "Tk Library Procedures" .BS diff --git a/doc/GetRelief.3 b/doc/GetRelief.3 index f75bdaa..209fb67 100644 --- a/doc/GetRelief.3 +++ b/doc/GetRelief.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetRelief.3,v 1.4 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_GetReliefFromObj 3 8.1 Tk "Tk Library Procedures" .BS diff --git a/doc/GetRootCrd.3 b/doc/GetRootCrd.3 index 697d339..48d4d70 100644 --- a/doc/GetRootCrd.3 +++ b/doc/GetRootCrd.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: GetRootCrd.3,v 1.2 1998/09/14 18:22:51 stanton Exp $ -'\" .so man.macros .TH Tk_GetRootCoords 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/GetScroll.3 b/doc/GetScroll.3 index 96514a4..6ac19ce 100644 --- a/doc/GetScroll.3 +++ b/doc/GetScroll.3 @@ -5,8 +5,6 @@ '\" See the file "license.terms" for information on usage and redistribution