summaryrefslogtreecommitdiffstats
path: root/Modules/FindKDE4.cmake
blob: 12fd304865bd3604356c29cbfc5b045f3ca20b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Find KDE4 and provide all necessary variables and macros to compile software for it.
# It looks for KDE 4 in the following directories in the given order:
#  CMAKE_INSTALL_PREFIX
#  KDEDIRS
#  /opt/kde4
#
# Please look in FindKDE4Internal.cmake and KDE4Macros.cmake for more information.
# They are installed with the KDE 4 libraries in $KDEDIRS/share/apps/cmake/modules/.
#
# Author: Alexander Neundorf <neundorf@kde.org>

#=============================================================================
# Copyright 2006-2009 Kitware, Inc.
# Copyright 2006 Alexander Neundorf <neundorf@kde.org>
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distributed this file outside of CMake, substitute the full
#  License text for the above reference.)

# If Qt3 has already been found, fail.
IF(QT_QT_LIBRARY)
  IF(KDE4_FIND_REQUIRED)
    MESSAGE( FATAL_ERROR "KDE4/Qt4 and Qt3 cannot be used together in one project.")
  ELSE(KDE4_FIND_REQUIRED)
    IF(NOT KDE4_FIND_QUIETLY)
      MESSAGE( STATUS    "KDE4/Qt4 and Qt3 cannot be used together in one project.")
    ENDIF(NOT KDE4_FIND_QUIETLY)
    RETURN()
  ENDIF(KDE4_FIND_REQUIRED)
ENDIF(QT_QT_LIBRARY)

FILE(TO_CMAKE_PATH "$ENV{KDEDIRS}" _KDEDIRS)

# when cross compiling, searching kde4-config in order to run it later on
# doesn't make a lot of sense. We'll have to do something about this. 
# Searching always in the target environment ? Then we get at least the correct one,
# still it can't be used to run it. Alex

# For KDE4 kde-config has been renamed to kde4-config
FIND_PROGRAM(KDE4_KDECONFIG_EXECUTABLE NAMES kde4-config
   # the suffix must be used since KDEDIRS can be a list of directories which don't have bin/ appended
   PATH_SUFFIXES bin               
   HINTS
   ${CMAKE_INSTALL_PREFIX}
   ${_KDEDIRS}
   /opt/kde4
   ONLY_CMAKE_FIND_ROOT_PATH
   )

IF (NOT KDE4_KDECONFIG_EXECUTABLE)
   IF (KDE4_FIND_REQUIRED)
      MESSAGE(FATAL_ERROR "ERROR: Could not find KDE4 kde4-config")
   ENDIF (KDE4_FIND_REQUIRED)
ENDIF (NOT KDE4_KDECONFIG_EXECUTABLE)


# when cross compiling, KDE4_DATA_DIR may be already preset
IF(NOT KDE4_DATA_DIR)
   IF(CMAKE_CROSSCOMPILING)
      # when cross compiling, don't run kde4-config but use its location as install dir
      GET_FILENAME_COMPONENT(KDE4_DATA_DIR "${KDE4_KDECONFIG_EXECUTABLE}" PATH)
      GET_FILENAME_COMPONENT(KDE4_DATA_DIR "${KDE4_DATA_DIR}" PATH)
   ELSE(CMAKE_CROSSCOMPILING)
      # then ask kde4-config for the kde data dirs

      IF(KDE4_KDECONFIG_EXECUTABLE)
        EXECUTE_PROCESS(COMMAND "${KDE4_KDECONFIG_EXECUTABLE}" --path data OUTPUT_VARIABLE _data_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
        FILE(TO_CMAKE_PATH "${_data_DIR}" _data_DIR)
        # then check the data dirs for FindKDE4Internal.cmake
        FIND_PATH(KDE4_DATA_DIR cmake/modules/FindKDE4Internal.cmake ${_data_DIR})
      ENDIF(KDE4_KDECONFIG_EXECUTABLE)
   ENDIF(CMAKE_CROSSCOMPILING)
ENDIF(NOT KDE4_DATA_DIR)

# if it has been found...
IF (KDE4_DATA_DIR)

   SET(CMAKE_MODULE_PATH  ${CMAKE_MODULE_PATH} ${KDE4_DATA_DIR}/cmake/modules)

   IF (KDE4_FIND_QUIETLY)
      SET(_quiet QUIET)
   ENDIF (KDE4_FIND_QUIETLY)

   IF (KDE4_FIND_REQUIRED)
      SET(_req REQUIRED)
   ENDIF (KDE4_FIND_REQUIRED)

   # use FindKDE4Internal.cmake to do the rest
   FIND_PACKAGE(KDE4Internal ${_req} ${_quiet})
ELSE (KDE4_DATA_DIR)
   IF (KDE4_FIND_REQUIRED)
      MESSAGE(FATAL_ERROR "ERROR: cmake/modules/FindKDE4Internal.cmake not found in ${_data_DIR}")
   ENDIF (KDE4_FIND_REQUIRED)
ENDIF (KDE4_DATA_DIR)
8d7'>bug_cbab0f88d7 Tk is a free and open-source, cross-platform widget toolkit that provides a library of basic elements of GUI widgets for building a graphical user interface (GUI) in many programming languages.
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat
-rw-r--r--README2
-rw-r--r--carbon/GNUmakefile3
-rw-r--r--carbon/README2
-rw-r--r--carbon/Tk-Info.plist.in2
-rw-r--r--carbon/Wish-Common.xcconfig3
-rw-r--r--carbon/Wish-Debug.xcconfig3
-rw-r--r--carbon/Wish-Info.plist.in2
-rw-r--r--carbon/Wish-Release.xcconfig3
-rw-r--r--carbon/Wish.xcode/project.pbxproj2
-rw-r--r--carbon/Wish.xcodeproj/project.pbxproj2
-rw-r--r--carbon/configure.ac2
-rw-r--r--carbon/tkAboutDlg.r2
-rw-r--r--carbon/tkMacOSX.h2
-rw-r--r--carbon/tkMacOSXAETE.r2
-rw-r--r--carbon/tkMacOSXBitmap.c2
-rw-r--r--carbon/tkMacOSXButton.c2
-rw-r--r--carbon/tkMacOSXCarbonEvents.c2
-rw-r--r--carbon/tkMacOSXClipboard.c2
-rw-r--r--carbon/tkMacOSXColor.c2
-rw-r--r--carbon/tkMacOSXConfig.c2
-rw-r--r--carbon/tkMacOSXCursor.c2
-rw-r--r--carbon/tkMacOSXCursors.r2
-rw-r--r--carbon/tkMacOSXDebug.c2
-rw-r--r--carbon/tkMacOSXDebug.h2
-rw-r--r--carbon/tkMacOSXDefault.h2
-rw-r--r--carbon/tkMacOSXDialog.c2
-rw-r--r--carbon/tkMacOSXDraw.c2
-rw-r--r--carbon/tkMacOSXEmbed.c2
-rw-r--r--carbon/tkMacOSXEntry.c2
-rw-r--r--carbon/tkMacOSXEvent.c2
-rw-r--r--carbon/tkMacOSXEvent.h2
-rw-r--r--carbon/tkMacOSXFont.c2
-rw-r--r--carbon/tkMacOSXFont.h2
-rw-r--r--carbon/tkMacOSXHLEvents.c2
-rw-r--r--carbon/tkMacOSXInit.c2
-rw-r--r--carbon/tkMacOSXInt.h2
-rw-r--r--carbon/tkMacOSXKeyEvent.c2
-rw-r--r--carbon/tkMacOSXKeyboard.c2
-rw-r--r--carbon/tkMacOSXMenu.c2
-rw-r--r--carbon/tkMacOSXMenubutton.c2
-rw-r--r--carbon/tkMacOSXMenus.c2
-rw-r--r--carbon/tkMacOSXMouseEvent.c2
-rw-r--r--carbon/tkMacOSXNotify.c2
-rw-r--r--carbon/tkMacOSXPort.h2
-rw-r--r--carbon/tkMacOSXPrivate.h2
-rw-r--r--carbon/tkMacOSXRegion.c2
-rw-r--r--carbon/tkMacOSXScale.c2
-rw-r--r--carbon/tkMacOSXScrlbr.c2
-rw-r--r--carbon/tkMacOSXSend.c2
-rw-r--r--carbon/tkMacOSXSubwindows.c2
-rw-r--r--carbon/tkMacOSXTest.c2
-rw-r--r--carbon/tkMacOSXWindowEvent.c2
-rw-r--r--carbon/tkMacOSXWm.c2
-rw-r--r--carbon/tkMacOSXWm.h2
-rw-r--r--carbon/tkMacOSXXCursors.r2
-rw-r--r--carbon/tkMacOSXXStubs.c2
-rw-r--r--carbon/ttkMacOSXTheme.c2
-rw-r--r--changes2
-rw-r--r--compat/limits.h2
-rw-r--r--compat/stdlib.h2
-rw-r--r--compat/unistd.h2
-rw-r--r--doc/3DBorder.32
-rw-r--r--doc/AddOption.33
-rw-r--r--doc/BindTable.32
-rw-r--r--doc/CanvPsY.32
-rw-r--r--doc/CanvTkwin.32
-rw-r--r--doc/CanvTxtInfo.32
-rw-r--r--doc/Clipboard.32
-rw-r--r--doc/ClrSelect.32
-rw-r--r--doc/ConfigWidg.32
-rw-r--r--doc/ConfigWind.32
-rw-r--r--doc/CoordToWin.32
-rw-r--r--doc/CrtCmHdlr.32
-rw-r--r--doc/CrtConsoleChan.32
-rw-r--r--doc/CrtErrHdlr.32
-rw-r--r--doc/CrtGenHdlr.32
-rw-r--r--doc/CrtImgType.32
-rw-r--r--doc/CrtItemType.32
-rw-r--r--doc/CrtPhImgFmt.32
-rw-r--r--doc/CrtSelHdlr.32
-rw-r--r--doc/CrtWindow.32
-rw-r--r--doc/DeleteImg.32
-rw-r--r--doc/DrawFocHlt.32
-rw-r--r--doc/EventHndlr.32
-rw-r--r--doc/FindPhoto.32
-rw-r--r--doc/FontId.32
-rw-r--r--doc/FreeXId.32
-rw-r--r--doc/GeomReq.33
-rw-r--r--doc/GetAnchor.32
-rw-r--r--doc/GetBitmap.32
-rw-r--r--doc/GetCapStyl.32
-rw-r--r--doc/GetClrmap.32
-rw-r--r--doc/GetColor.32
-rw-r--r--doc/GetCursor.32
-rw-r--r--doc/GetDash.32
-rw-r--r--doc/GetFont.32
-rw-r--r--doc/GetGC.32
-rw-r--r--doc/GetHINSTANCE.32
-rw-r--r--doc/GetHWND.33
-rw-r--r--doc/GetImage.32
-rw-r--r--doc/GetJoinStl.32
-rw-r--r--doc/GetJustify.32
-rw-r--r--doc/GetOption.32
-rw-r--r--doc/GetPixels.32
-rw-r--r--doc/GetPixmap.32
-rw-r--r--doc/GetRelief.32
-rw-r--r--doc/GetRootCrd.32
-rw-r--r--doc/GetScroll.32
-rw-r--r--doc/GetSelect.32
-rw-r--r--doc/GetUid.32
-rw-r--r--doc/GetVRoot.32
-rw-r--r--doc/GetVisual.32
-rw-r--r--doc/Grab.32
-rw-r--r--doc/HWNDToWindow.32
-rw-r--r--doc/HandleEvent.32
-rw-r--r--doc/IdToWindow.32
-rw-r--r--doc/ImgChanged.32
-rw-r--r--doc/Inactive.32
-rw-r--r--doc/InternAtom.32
-rw-r--r--doc/MainLoop.32
-rw-r--r--doc/MainWin.32
-rw-r--r--doc/MaintGeom.32
-rw-r--r--doc/ManageGeom.32
-rw-r--r--doc/MapWindow.32
-rw-r--r--doc/MeasureChar.32
-rw-r--r--doc/MoveToplev.32
-rw-r--r--doc/Name.32
-rw-r--r--doc/NameOfImg.32
-rw-r--r--doc/OwnSelect.32
-rw-r--r--doc/ParseArgv.32
-rw-r--r--doc/QWinEvent.32
-rw-r--r--doc/Restack.32
-rw-r--r--doc/RestrictEv.32
-rw-r--r--doc/SetAppName.32
-rw-r--r--doc/SetCaret.32
-rw-r--r--doc/SetClass.32
-rw-r--r--doc/SetClassProcs.32
-rw-r--r--doc/SetGrid.32
-rw-r--r--doc/SetOptions.32
-rw-r--r--doc/SetVisual.32
-rw-r--r--doc/StrictMotif.32
-rw-r--r--doc/TextLayout.32
-rw-r--r--doc/TkInitStubs.32
-rw-r--r--doc/Tk_Init.32
-rw-r--r--doc/Tk_Main.32
-rw-r--r--doc/WindowId.32
-rw-r--r--doc/bell.n2
-rw-r--r--doc/bind.n2
-rw-r--r--doc/bindtags.n2
-rw-r--r--doc/bitmap.n2
-rw-r--r--doc/busy.n2
-rw-r--r--doc/button.n2
-rw-r--r--doc/canvas.n2
-rw-r--r--doc/checkbutton.n2
-rw-r--r--doc/chooseColor.n2
-rw-r--r--doc/chooseDirectory.n2
-rw-r--r--doc/clipboard.n2
-rw-r--r--doc/colors.n1
-rw-r--r--doc/console.n2
-rw-r--r--doc/cursors.n3
-rw-r--r--doc/destroy.n2
-rw-r--r--doc/dialog.n2
-rw-r--r--doc/entry.n2
-rw-r--r--doc/event.n2
-rw-r--r--doc/focus.n2
-rw-r--r--doc/focusNext.n2
-rw-r--r--doc/font.n2
-rw-r--r--doc/fontchooser.n2
-rw-r--r--doc/frame.n2
-rw-r--r--doc/getOpenFile.n2
-rw-r--r--doc/grab.n2
-rw-r--r--doc/grid.n2
-rw-r--r--doc/image.n2
-rw-r--r--doc/keysyms.n3
-rw-r--r--doc/label.n2
-rw-r--r--doc/labelframe.n2
-rw-r--r--doc/listbox.n2
-rw-r--r--doc/loadTk.n2
-rw-r--r--doc/lower.n2
-rw-r--r--doc/menu.n2
-rw-r--r--doc/menubar.n2
-rw-r--r--doc/menubutton.n2
-rw-r--r--doc/message.n2
-rw-r--r--doc/messageBox.n2
-rw-r--r--doc/option.n2
-rw-r--r--doc/optionMenu.n2
-rw-r--r--doc/options.n2
-rw-r--r--doc/pack-old.n2
-rw-r--r--doc/pack.n2
-rw-r--r--doc/palette.n2
-rw-r--r--doc/panedwindow.n2
-rw-r--r--doc/photo.n2
-rw-r--r--doc/place.n2
-rw-r--r--doc/popup.n2
-rw-r--r--doc/radiobutton.n2
-rw-r--r--doc/raise.n2
-rw-r--r--doc/scale.n2
-rw-r--r--doc/scrollbar.n2
-rw-r--r--doc/selection.n2
-rw-r--r--doc/send.n2
-rw-r--r--doc/spinbox.n2
-rw-r--r--doc/text.n2
-rw-r--r--doc/tk.n2
-rw-r--r--doc/tkerror.n2
-rw-r--r--doc/tkvars.n2
-rw-r--r--doc/tkwait.n2
-rw-r--r--doc/toplevel.n2
-rw-r--r--doc/ttk_Geometry.32
-rw-r--r--doc/ttk_Theme.32
-rw-r--r--doc/ttk_button.n2
-rw-r--r--doc/ttk_checkbutton.n2
-rw-r--r--doc/ttk_combobox.n2
-rw-r--r--doc/ttk_entry.n3
-rw-r--r--doc/ttk_frame.n2
-rw-r--r--doc/ttk_image.n2
-rw-r--r--doc/ttk_intro.n2
-rw-r--r--doc/ttk_label.n2
-rw-r--r--doc/ttk_labelframe.n2
-rw-r--r--doc/ttk_menubutton.n2
-rw-r--r--doc/ttk_notebook.n2
-rw-r--r--doc/ttk_panedwindow.n2
-rw-r--r--doc/ttk_progressbar.n2
-rw-r--r--doc/ttk_radiobutton.n2
-rw-r--r--doc/ttk_scale.n2
-rw-r--r--doc/ttk_scrollbar.n3
-rw-r--r--doc/ttk_separator.n2
-rw-r--r--doc/ttk_sizegrip.n2
-rw-r--r--doc/ttk_spinbox.n2
-rw-r--r--doc/ttk_style.n2
-rw-r--r--doc/ttk_treeview.n2
-rw-r--r--doc/ttk_vsapi.n2
-rw-r--r--doc/ttk_widget.n2
-rw-r--r--doc/winfo.n2
-rw-r--r--doc/wish.12
-rw-r--r--doc/wm.n2
-rw-r--r--generic/README2
-rw-r--r--generic/default.h2
-rw-r--r--generic/ks_names.h1
-rw-r--r--generic/tk.decls2
-rw-r--r--generic/tk.h2
-rw-r--r--generic/tk3d.c2
-rw-r--r--generic/tk3d.h2
-rw-r--r--generic/tkArgv.c2
-rw-r--r--generic/tkAtom.c2
-rw-r--r--generic/tkBind.c2
-rw-r--r--generic/tkBitmap.c2
-rw-r--r--generic/tkBusy.c2
-rw-r--r--generic/tkBusy.h2
-rw-r--r--generic/tkButton.c2
-rw-r--r--generic/tkButton.h2
-rw-r--r--generic/tkCanvArc.c2
-rw-r--r--generic/tkCanvBmap.c2
-rw-r--r--generic/tkCanvImg.c2
-rw-r--r--generic/tkCanvLine.c2
-rw-r--r--generic/tkCanvPoly.c2
-rw-r--r--generic/tkCanvPs.c2
-rw-r--r--generic/tkCanvText.c2
-rw-r--r--generic/tkCanvUtil.c2
-rw-r--r--generic/tkCanvWind.c2
-rw-r--r--generic/tkCanvas.c2
-rw-r--r--generic/tkCanvas.h2
-rw-r--r--generic/tkClipboard.c2
-rw-r--r--generic/tkCmds.c2
-rw-r--r--generic/tkColor.c2
-rw-r--r--generic/tkColor.h2
-rw-r--r--generic/tkConfig.c2
-rw-r--r--generic/tkConsole.c2
-rw-r--r--generic/tkCursor.c2
-rw-r--r--generic/tkDecls.h2
-rw-r--r--generic/tkEntry.c2
-rw-r--r--generic/tkError.c2
-rw-r--r--generic/tkEvent.c2
-rw-r--r--generic/tkFileFilter.c2
-rw-r--r--generic/tkFileFilter.h3
-rw-r--r--generic/tkFocus.c2
-rw-r--r--generic/tkFont.c2
-rw-r--r--generic/tkFont.h2
-rw-r--r--generic/tkFrame.c2
-rw-r--r--generic/tkGC.c2
-rw-r--r--generic/tkGeometry.c2
-rw-r--r--generic/tkGet.c2
-rw-r--r--generic/tkGrab.c2
-rw-r--r--generic/tkGrid.c2
-rw-r--r--generic/tkImage.c2
-rw-r--r--generic/tkImgBmap.c2
-rw-r--r--generic/tkImgGIF.c2
-rw-r--r--generic/tkImgPNG.c2
-rw-r--r--generic/tkImgPPM.c2
-rw-r--r--generic/tkImgPhInstance.c2
-rw-r--r--generic/tkImgPhoto.c2
-rw-r--r--generic/tkImgPhoto.h2
-rw-r--r--generic/tkImgUtil.c2
-rw-r--r--generic/tkInt.decls2
-rw-r--r--generic/tkInt.h2
-rw-r--r--generic/tkIntDecls.h2
-rw-r--r--generic/tkIntPlatDecls.h2
-rw-r--r--generic/tkIntXlibDecls.h2
-rw-r--r--generic/tkListbox.c2
-rw-r--r--generic/tkMacWinMenu.c2
-rw-r--r--generic/tkMain.c2
-rw-r--r--generic/tkMenu.c2
-rw-r--r--generic/tkMenu.h2
-rw-r--r--generic/tkMenuDraw.c2
-rw-r--r--generic/tkMenubutton.c2
-rw-r--r--generic/tkMenubutton.h2
-rw-r--r--generic/tkMessage.c2
-rw-r--r--generic/tkObj.c2
-rw-r--r--generic/tkOldConfig.c2
-rw-r--r--generic/tkOldTest.c2
-rw-r--r--generic/tkOption.c2
-rw-r--r--generic/tkPack.c2
-rw-r--r--generic/tkPanedWindow.c2
-rw-r--r--generic/tkPlace.c2
-rw-r--r--generic/tkPlatDecls.h2
-rw-r--r--generic/tkPointer.c2
-rw-r--r--generic/tkPort.h2
-rw-r--r--generic/tkRectOval.c2
-rw-r--r--generic/tkScale.c2
-rw-r--r--generic/tkScale.h2
-rw-r--r--generic/tkScrollbar.c2
-rw-r--r--generic/tkScrollbar.h2
-rw-r--r--generic/tkSelect.c2
-rw-r--r--generic/tkSelect.h2
-rw-r--r--generic/tkSquare.c2
-rw-r--r--generic/tkStubInit.c2
-rw-r--r--generic/tkStubLib.c2
-rw-r--r--generic/tkStyle.c2
-rw-r--r--generic/tkTest.c2
-rw-r--r--generic/tkText.c2
-rw-r--r--generic/tkText.h2
-rw-r--r--generic/tkTextBTree.c2
-rw-r--r--generic/tkTextDisp.c2
-rw-r--r--generic/tkTextImage.c2
-rw-r--r--generic/tkTextIndex.c2
-rw-r--r--generic/tkTextMark.c2
-rw-r--r--generic/tkTextTag.c2
-rw-r--r--generic/tkTextWind.c2
-rw-r--r--generic/tkTrig.c2
-rw-r--r--generic/tkUndo.c2
-rw-r--r--generic/tkUndo.h2
-rw-r--r--generic/tkUtil.c2
-rw-r--r--generic/tkVisual.c2
-rw-r--r--generic/tkWindow.c2
-rw-r--r--generic/ttk/ttk.decls4
-rw-r--r--generic/ttk/ttkBlink.c2
-rw-r--r--generic/ttk/ttkButton.c2
-rw-r--r--generic/ttk/ttkCache.c1
-rw-r--r--generic/ttk/ttkClamTheme.c2
-rw-r--r--generic/ttk/ttkClassicTheme.c2
-rw-r--r--generic/ttk/ttkDecls.h2
-rw-r--r--generic/ttk/ttkDefaultTheme.c3
-rw-r--r--generic/ttk/ttkElements.c3
-rw-r--r--generic/ttk/ttkEntry.c2
-rw-r--r--generic/ttk/ttkFrame.c2
-rw-r--r--generic/ttk/ttkGenStubs.tcl2
-rw-r--r--generic/ttk/ttkImage.c2
-rw-r--r--generic/ttk/ttkInit.c2
-rw-r--r--generic/ttk/ttkLabel.c3
-rw-r--r--generic/ttk/ttkLayout.c2
-rw-r--r--generic/ttk/ttkManager.c3
-rw-r--r--generic/ttk/ttkManager.h3
-rw-r--r--generic/ttk/ttkNotebook.c2
-rw-r--r--generic/ttk/ttkPanedwindow.c3
-rw-r--r--generic/ttk/ttkProgress.c3
-rw-r--r--generic/ttk/ttkScale.c2
-rw-r--r--generic/ttk/ttkScroll.c3
-rw-r--r--generic/ttk/ttkScrollbar.c2
-rw-r--r--generic/ttk/ttkSeparator.c3
-rw-r--r--generic/ttk/ttkSquare.c2
-rw-r--r--generic/ttk/ttkState.c2
-rw-r--r--generic/ttk/ttkStubInit.c2
-rw-r--r--generic/ttk/ttkStubLib.c5
-rw-r--r--generic/ttk/ttkTagSet.c3
-rw-r--r--generic/ttk/ttkTheme.c2
-rw-r--r--generic/ttk/ttkTheme.h2
-rw-r--r--generic/ttk/ttkThemeInt.h2
-rw-r--r--generic/ttk/ttkTrace.c3
-rw-r--r--generic/ttk/ttkTrack.c2
-rw-r--r--generic/ttk/ttkTreeview.c2
-rw-r--r--generic/ttk/ttkWidget.c2
-rw-r--r--generic/ttk/ttkWidget.h2
-rw-r--r--library/bgerror.tcl3
-rw-r--r--library/button.tcl2
-rw-r--r--library/choosedir.tcl2
-rw-r--r--library/clrpick.tcl2
-rw-r--r--library/comdlg.tcl2
-rw-r--r--library/console.tcl2
-rw-r--r--library/demos/README2
-rw-r--r--library/demos/anilabel.tcl2
-rw-r--r--library/demos/aniwave.tcl2
-rw-r--r--library/demos/arrow.tcl2
-rw-r--r--library/demos/bind.tcl2
-rw-r--r--library/demos/bitmap.tcl2
-rw-r--r--library/demos/browse2
-rw-r--r--library/demos/button.tcl2
-rw-r--r--library/demos/check.tcl2
-rw-r--r--library/demos/clrpick.tcl2
-rw-r--r--library/demos/colors.tcl2
-rw-r--r--library/demos/combo.tcl2
-rw-r--r--library/demos/cscroll.tcl2
-rw-r--r--library/demos/ctext.tcl2
-rw-r--r--library/demos/dialog1.tcl2
-rw-r--r--library/demos/dialog2.tcl2
-rw-r--r--library/demos/entry1.tcl2
-rw-r--r--library/demos/entry2.tcl2
-rw-r--r--library/demos/entry3.tcl2
-rw-r--r--library/demos/filebox.tcl2
-rw-r--r--library/demos/floor.tcl2
-rw-r--r--library/demos/fontchoose.tcl2
-rw-r--r--library/demos/form.tcl2
-rw-r--r--library/demos/hello2
-rw-r--r--library/demos/hscale.tcl2
-rw-r--r--library/demos/icon.tcl2
-rw-r--r--library/demos/image1.tcl2
-rw-r--r--library/demos/image2.tcl2
-rw-r--r--library/demos/items.tcl2
-rw-r--r--library/demos/ixset2
-rw-r--r--library/demos/label.tcl2
-rw-r--r--library/demos/labelframe.tcl2
-rw-r--r--library/demos/mclist.tcl2
-rw-r--r--library/demos/menu.tcl2
-rw-r--r--library/demos/menubu.tcl2
-rw-r--r--library/demos/msgbox.tcl2
-rw-r--r--library/demos/paned1.tcl2
-rw-r--r--library/demos/paned2.tcl2
-rw-r--r--library/demos/pendulum.tcl2
-rw-r--r--library/demos/plot.tcl2
-rw-r--r--library/demos/puzzle.tcl2
-rw-r--r--library/demos/radio.tcl2
-rw-r--r--library/demos/rmt2
-rw-r--r--library/demos/rolodex2
-rw-r--r--library/demos/ruler.tcl2
-rw-r--r--library/demos/sayings.tcl2
-rw-r--r--library/demos/search.tcl2
-rw-r--r--library/demos/spin.tcl2
-rw-r--r--library/demos/square2
-rw-r--r--library/demos/states.tcl2
-rw-r--r--library/demos/style.tcl2
-rw-r--r--library/demos/tcolor2
-rw-r--r--library/demos/text.tcl2
-rw-r--r--library/demos/textpeer.tcl2
-rw-r--r--library/demos/timer2
-rw-r--r--library/demos/toolbar.tcl2
-rw-r--r--library/demos/tree.tcl2
-rw-r--r--library/demos/ttkbut.tcl2
-rw-r--r--library/demos/ttkmenu.tcl2
-rw-r--r--library/demos/ttknote.tcl2
-rw-r--r--library/demos/ttkpane.tcl2
-rw-r--r--library/demos/ttkprogress.tcl2
-rw-r--r--library/demos/ttkscale.tcl2
-rw-r--r--library/demos/twind.tcl2
-rw-r--r--library/demos/unicodeout.tcl2
-rw-r--r--library/demos/vscale.tcl2
-rw-r--r--library/demos/widget2
-rw-r--r--library/dialog.tcl2
-rw-r--r--library/entry.tcl2
-rw-r--r--library/focus.tcl2
-rw-r--r--library/fontchooser.tcl2
-rw-r--r--library/iconlist.tcl2
-rw-r--r--library/icons.tcl3
-rw-r--r--library/images/README5
-rw-r--r--library/listbox.tcl2
-rw-r--r--library/megawidget.tcl2
-rw-r--r--library/menu.tcl2
-rw-r--r--library/mkpsenc.tcl1
-rw-r--r--library/msgbox.tcl2
-rw-r--r--library/obsolete.tcl2
-rw-r--r--library/optMenu.tcl2
-rw-r--r--library/palette.tcl2
-rw-r--r--library/panedwindow.tcl3
-rw-r--r--library/safetk.tcl2
-rw-r--r--library/scale.tcl2
-rw-r--r--library/scrlbar.tcl2
-rw-r--r--library/spinbox.tcl2
-rw-r--r--library/tearoff.tcl2
-rw-r--r--library/text.tcl2
-rw-r--r--library/tk.tcl2
-rw-r--r--library/tkfbox.tcl2
-rw-r--r--library/ttk/altTheme.tcl2
-rw-r--r--library/ttk/aquaTheme.tcl2
-rw-r--r--library/ttk/button.tcl2
-rw-r--r--library/ttk/clamTheme.tcl2
-rw-r--r--library/ttk/classicTheme.tcl2
-rw-r--r--library/ttk/combobox.tcl2
-rw-r--r--library/ttk/cursors.tcl2
-rw-r--r--library/ttk/defaults.tcl2
-rw-r--r--library/ttk/entry.tcl2
-rw-r--r--library/ttk/fonts.tcl2
-rw-r--r--library/ttk/menubutton.tcl2
-rw-r--r--library/ttk/notebook.tcl2
-rw-r--r--library/ttk/panedwindow.tcl2
-rw-r--r--library/ttk/progress.tcl2
-rw-r--r--library/ttk/scale.tcl2
-rw-r--r--library/ttk/scrollbar.tcl2
-rw-r--r--library/ttk/sizegrip.tcl2
-rw-r--r--library/ttk/spinbox.tcl2
-rw-r--r--library/ttk/treeview.tcl1
-rw-r--r--library/ttk/ttk.tcl2
-rw-r--r--library/ttk/utils.tcl2
-rw-r--r--library/ttk/winTheme.tcl2
-rw-r--r--library/ttk/xpTheme.tcl2
-rw-r--r--library/unsupported.tcl2
-rw-r--r--library/xmfbox.tcl2
-rw-r--r--macosx/GNUmakefile2
-rw-r--r--macosx/README2
-rw-r--r--macosx/Tk-Common.xcconfig3
-rw-r--r--macosx/Tk-Debug.xcconfig3
-rw-r--r--macosx/Tk-Info.plist.in2
-rw-r--r--macosx/Tk-Release.xcconfig3
-rw-r--r--macosx/Tk.xcode/project.pbxproj2
-rw-r--r--macosx/Tk.xcodeproj/project.pbxproj2
-rw-r--r--macosx/Wish-Info.plist.in2
-rw-r--r--macosx/Wish.sdef2
-rw-r--r--macosx/configure.ac2
-rw-r--r--macosx/tkMacOSX.h2
-rw-r--r--macosx/tkMacOSXBitmap.c2
-rw-r--r--macosx/tkMacOSXButton.c2
-rw-r--r--macosx/tkMacOSXClipboard.c2
-rw-r--r--macosx/tkMacOSXColor.c2
-rw-r--r--macosx/tkMacOSXConfig.c2
-rw-r--r--macosx/tkMacOSXCursor.c2
-rw-r--r--macosx/tkMacOSXCursors.h2
-rw-r--r--macosx/tkMacOSXDebug.c2
-rw-r--r--macosx/tkMacOSXDebug.h2
-rw-r--r--macosx/tkMacOSXDefault.h2
-rw-r--r--macosx/tkMacOSXDialog.c2
-rw-r--r--macosx/tkMacOSXDraw.c2
-rw-r--r--macosx/tkMacOSXEmbed.c2
-rw-r--r--macosx/tkMacOSXEntry.c2
-rw-r--r--macosx/tkMacOSXEvent.c2
-rw-r--r--macosx/tkMacOSXEvent.h2
-rw-r--r--macosx/tkMacOSXFont.c2
-rw-r--r--macosx/tkMacOSXFont.h2
-rw-r--r--macosx/tkMacOSXHLEvents.c2
-rw-r--r--macosx/tkMacOSXInit.c2
-rw-r--r--macosx/tkMacOSXInt.h2
-rw-r--r--macosx/tkMacOSXKeyEvent.c2
-rw-r--r--macosx/tkMacOSXKeyboard.c2
-rw-r--r--macosx/tkMacOSXMenu.c2
-rw-r--r--macosx/tkMacOSXMenubutton.c2
-rw-r--r--macosx/tkMacOSXMenus.c2
-rw-r--r--macosx/tkMacOSXMouseEvent.c2
-rw-r--r--macosx/tkMacOSXNotify.c2
-rw-r--r--macosx/tkMacOSXPort.h2
-rw-r--r--macosx/tkMacOSXPrivate.h2
-rw-r--r--macosx/tkMacOSXRegion.c2
-rw-r--r--macosx/tkMacOSXScale.c2
-rw-r--r--macosx/tkMacOSXScrlbr.c2
-rw-r--r--macosx/tkMacOSXSend.c2
-rw-r--r--macosx/tkMacOSXSubwindows.c2
-rw-r--r--macosx/tkMacOSXTest.c2
-rw-r--r--macosx/tkMacOSXWindowEvent.c2
-rw-r--r--macosx/tkMacOSXWm.c2
-rw-r--r--macosx/tkMacOSXWm.h2
-rw-r--r--macosx/tkMacOSXXCursors.h2
-rw-r--r--macosx/tkMacOSXXStubs.c2
-rw-r--r--macosx/ttkMacOSXTheme.c2
-rw-r--r--tests/README2
-rw-r--r--tests/all.tcl2
-rw-r--r--tests/arc.tcl2
-rw-r--r--tests/bell.test2
-rw-r--r--tests/bevel.tcl2
-rw-r--r--tests/bgerror.test2
-rw-r--r--tests/bind.test2
-rw-r--r--tests/bitmap.test2
-rw-r--r--tests/border.test2
-rw-r--r--tests/bugs.tcl2
-rw-r--r--tests/busy.test2
-rw-r--r--tests/butGeom.tcl2
-rw-r--r--tests/butGeom2.tcl2
-rw-r--r--tests/button.test2
-rw-r--r--tests/canvImg.test4
-rw-r--r--tests/canvMoveto.test2
-rw-r--r--tests/canvPs.test4
-rw-r--r--tests/canvPsArc.tcl2
-rw-r--r--tests/canvPsBmap.tcl2
-rw-r--r--tests/canvPsGrph.tcl2
-rw-r--r--tests/canvPsImg.tcl2
-rw-r--r--tests/canvPsText.tcl2
-rw-r--r--tests/canvRect.test2
-rw-r--r--tests/canvText.test2
-rw-r--r--tests/canvWind.test2
-rw-r--r--tests/canvas.test2
-rw-r--r--tests/choosedir.test3
-rw-r--r--tests/clipboard.test2
-rw-r--r--tests/clrpick.test3
-rw-r--r--tests/cmap.tcl2
-rw-r--r--tests/cmds.test2
-rw-r--r--tests/color.test2
-rw-r--r--tests/config.test2
-rw-r--r--tests/cursor.test4
-rw-r--r--tests/dialog.test3
-rw-r--r--tests/embed.test2
-rw-r--r--tests/entry.test2
-rw-r--r--tests/event.test2
-rw-r--r--tests/filebox.test3
-rw-r--r--tests/focus.test2
-rw-r--r--tests/focusTcl.test2
-rw-r--r--tests/font.test2
-rw-r--r--tests/fontchooser.test3
-rw-r--r--tests/frame.test2
-rw-r--r--tests/geometry.test2
-rw-r--r--tests/get.test2
-rw-r--r--tests/grab.test2
-rw-r--r--tests/grid.test2
-rw-r--r--tests/image.test2
-rw-r--r--tests/imgBmap.test2
-rw-r--r--tests/imgPNG.test2
-rw-r--r--tests/imgPPM.test2
-rw-r--r--tests/imgPhoto.test2
-rw-r--r--tests/listbox.test2
-rw-r--r--tests/main.test2
-rw-r--r--tests/menu.test2
-rw-r--r--tests/menuDraw.test2
-rw-r--r--tests/menubut.test4
-rw-r--r--tests/message.test2
-rw-r--r--tests/msgbox.test3
-rw-r--r--tests/obj.test2
-rw-r--r--tests/oldpack.test2
-rw-r--r--tests/option.test2
-rw-r--r--tests/pack.test2
-rw-r--r--tests/packgrid.test3
-rw-r--r--tests/panedwindow.test2
-rw-r--r--tests/place.test2
-rw-r--r--tests/raise.test2
-rw-r--r--tests/safe.test2
-rw-r--r--tests/scale.test4
-rw-r--r--tests/scrollbar.test2
-rw-r--r--tests/select.test2
-rw-r--r--tests/send.test2
-rw-r--r--tests/spinbox.test2
-rw-r--r--tests/text.test2
-rw-r--r--tests/textBTree.test2
-rw-r--r--tests/textDisp.test2
-rw-r--r--tests/textImage.test2
-rw-r--r--tests/textIndex.test2
-rw-r--r--tests/textMark.test2
-rw-r--r--tests/textTag.test2
-rw-r--r--tests/textWind.test2
-rw-r--r--tests/tk.test2
-rw-r--r--tests/ttk/all.tcl2
-rw-r--r--tests/ttk/checkbutton.test1
-rw-r--r--tests/ttk/image.test4
-rw-r--r--tests/ttk/labelframe.test4
-rw-r--r--tests/ttk/layout.test4
-rw-r--r--tests/ttk/notebook.test4
-rw-r--r--tests/ttk/panedwindow.test4
-rw-r--r--tests/ttk/progressbar.test4
-rw-r--r--tests/ttk/radiobutton.test1
-rw-r--r--tests/ttk/scrollbar.test4
-rw-r--r--tests/ttk/treetags.test3
-rw-r--r--tests/ttk/treeview.test2
-rw-r--r--tests/ttk/vsapi.test1
-rw-r--r--tests/unixButton.test2
-rw-r--r--tests/unixEmbed.test2
-rw-r--r--tests/unixFont.test2
-rw-r--r--tests/unixMenu.test4
-rw-r--r--tests/unixSelect.test2
-rw-r--r--tests/unixWm.test2
-rw-r--r--tests/util.test2
-rw-r--r--tests/visual.test4
-rw-r--r--tests/visual_bb.test2
-rw-r--r--tests/winButton.test2
-rw-r--r--tests/winClipboard.test4
-rw-r--r--tests/winDialog.test2
-rw-r--r--tests/winFont.test2
-rw-r--r--tests/winMenu.test2
-rw-r--r--tests/winMsgbox.test3
-rw-r--r--tests/winSend.test2
-rw-r--r--tests/winWm.test2
-rw-r--r--tests/window.test2
-rw-r--r--tests/winfo.test4
-rw-r--r--tests/wm.test2
-rw-r--r--tests/xmfbox.test4
-rw-r--r--unix/Makefile.in2
-rw-r--r--unix/README2
-rw-r--r--unix/configure.in2
-rw-r--r--unix/tk.pc.in1
-rw-r--r--unix/tk.spec1
-rw-r--r--unix/tkAppInit.c2
-rw-r--r--unix/tkConfig.sh.in2
-rw-r--r--unix/tkUnix.c2
-rw-r--r--unix/tkUnix3d.c2
-rw-r--r--unix/tkUnixButton.c2
-rw-r--r--unix/tkUnixColor.c2
-rw-r--r--unix/tkUnixConfig.c2
-rw-r--r--unix/tkUnixCursor.c2
-rw-r--r--unix/tkUnixDefault.h2
-rw-r--r--unix/tkUnixDialog.c3
-rw-r--r--unix/tkUnixDraw.c2
-rw-r--r--unix/tkUnixEmbed.c2
-rw-r--r--unix/tkUnixEvent.c2
-rw-r--r--unix/tkUnixFocus.c2
-rw-r--r--unix/tkUnixFont.c2
-rw-r--r--unix/tkUnixInit.c2
-rw-r--r--unix/tkUnixInt.h2
-rw-r--r--unix/tkUnixKey.c2
-rw-r--r--unix/tkUnixMenu.c2
-rw-r--r--unix/tkUnixMenubu.c2
-rw-r--r--unix/tkUnixPort.h2
-rw-r--r--unix/tkUnixRFont.c2
-rw-r--r--unix/tkUnixScale.c2
-rw-r--r--unix/tkUnixScrlbr.c2
-rw-r--r--unix/tkUnixSelect.c2
-rw-r--r--unix/tkUnixSend.c2
-rw-r--r--unix/tkUnixWm.c2
-rw-r--r--unix/tkUnixXId.c2
-rw-r--r--win/Makefile.in2
-rw-r--r--win/README2
-rwxr-xr-xwin/buildall.vc.bat2
-rw-r--r--win/configure.in2
-rw-r--r--win/makefile.bc2
-rw-r--r--win/makefile.vc3
-rw-r--r--win/mkd.bat1
-rw-r--r--win/nmakehlp.c3
-rw-r--r--win/rc/tk.rc1
-rw-r--r--win/rc/tk_base.rc1
-rw-r--r--win/rc/wish.rc1
-rw-r--r--win/rmd.bat1
-rw-r--r--win/tkConfig.sh.in2
-rw-r--r--win/tkWin.h2
-rw-r--r--win/tkWin32Dll.c2
-rw-r--r--win/tkWin3d.c2
-rw-r--r--win/tkWinButton.c2
-rw-r--r--win/tkWinClipboard.c2
-rw-r--r--win/tkWinColor.c2
-rw-r--r--win/tkWinConfig.c2
-rw-r--r--win/tkWinCursor.c2
-rw-r--r--win/tkWinDefault.h2
-rw-r--r--win/tkWinDialog.c3
-rw-r--r--win/tkWinDraw.c2
-rw-r--r--win/tkWinEmbed.c2
-rw-r--r--win/tkWinFont.c2
-rw-r--r--win/tkWinImage.c2
-rw-r--r--win/tkWinInit.c2
-rw-r--r--win/tkWinInt.h2
-rw-r--r--win/tkWinKey.c2
-rw-r--r--win/tkWinMenu.c2
-rw-r--r--win/tkWinPixmap.c2
-rw-r--r--win/tkWinPointer.c2
-rw-r--r--win/tkWinPort.h2
-rw-r--r--win/tkWinRegion.c2
-rw-r--r--win/tkWinScrlbr.c2
-rw-r--r--win/tkWinSend.c2
-rw-r--r--win/tkWinSendCom.c2
-rw-r--r--win/tkWinSendCom.h2
-rw-r--r--win/tkWinTest.c2
-rw-r--r--win/tkWinWindow.c2
-rw-r--r--win/tkWinWm.c2
-rw-r--r--win/tkWinX.c2
-rw-r--r--win/ttkWinMonitor.c3
-rw-r--r--win/ttkWinTheme.c2
-rw-r--r--win/ttkWinXPTheme.c2
-rw-r--r--win/winMain.c2
-rw-r--r--xlib/xbytes.h2
-rw-r--r--xlib/xcolors.c2
-rw-r--r--xlib/xdraw.c2
-rw-r--r--xlib/xgc.c2
-rw-r--r--xlib/ximage.c2
-rw-r--r--xlib/xutil.c2
760 files changed, 37 insertions, 1553 deletions
diff --git a/README b/README
index 0c68bcb..e17a410 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.59 2008/12/19 14:32:25 dgp Exp $
-
1. Introduction
---------------
diff --git a/carbon/GNUmakefile b/carbon/GNUmakefile
index 3c8e247..6a4e9b8 100644
--- a/carbon/GNUmakefile
+++ b/carbon/GNUmakefile
@@ -8,9 +8,6 @@
#
# See the file "license.terms" for information on usage and redistribution of
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
-#
-# RCS: @(#) $Id: GNUmakefile,v 1.1 2009/06/26 01:42:46 das Exp $
-#
########################################################################################################
#-------------------------------------------------------------------------------------------------------
diff --git a/carbon/README b/carbon/README
index 3e12858..85452c4 100644
--- a/carbon/README
+++ b/carbon/README
@@ -1,8 +1,6 @@
Tcl/TkAqua Carbon Mac OS X README
---------------------------------
-RCS: @(#) $Id: README,v 1.1 2009/06/26 01:42:46 das Exp $
-
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! This is the README for tk/carbon, the legacy version of TkAqua based on the !
! Carbon API. This version of TkAqua is deprecated and no longer actively !
diff --git a/carbon/Tk-Info.plist.in b/carbon/Tk-Info.plist.in
index 731f131..1705a98 100644
--- a/carbon/Tk-Info.plist.in
+++ b/carbon/Tk-Info.plist.in
@@ -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: Tk-Info.plist.in,v 1.1 2009/06/26 01:42:46 das Exp $
-->
<plist version="1.0">
<dict>
diff --git a/carbon/Wish-Common.xcconfig b/carbon/Wish-Common.xcconfig
index c9896d9..0c0ddc0 100644
--- a/carbon/Wish-Common.xcconfig
+++ b/carbon/Wish-Common.xcconfig
@@ -8,9 +8,6 @@
//
// See the file "license.terms" for information on usage and redistribution
// of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-//
-// RCS: @(#) $Id: Wish-Common.xcconfig,v 1.1 2009/06/26 01:42:46 das Exp $
-//
HEADER_SEARCH_PATHS = $(TK_SRCROOT)/generic $(TK_SRCROOT)/xlib "$(DERIVED_FILE_DIR)/tcl" "$(DERIVED_FILE_DIR)/tk" $(HEADER_SEARCH_PATHS)
REZ_SEARCH_PATHS = $(TK_SRCROOT)/generic $(TCL_SRCROOT)/generic $(REZ_SEARCH_PATHS)
diff --git a/carbon/Wish-Debug.xcconfig b/carbon/Wish-Debug.xcconfig
index db8b19c..09def97 100644
--- a/carbon/Wish-Debug.xcconfig
+++ b/carbon/Wish-Debug.xcconfig
@@ -8,9 +8,6 @@
//
// See the file "license.terms" for information on usage and redistribution
// of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-//
-// RCS: @(#) $Id: Wish-Debug.xcconfig,v 1.1 2009/06/26 01:42:46 das Exp $
-//
#include "Wish-Common.xcconfig"
diff --git a/carbon/Wish-Info.plist.in b/carbon/Wish-Info.plist.in
index 83dc735..85b0b08 100644
--- a/carbon/Wish-Info.plist.in
+++ b/carbon/Wish-Info.plist.in
@@ -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: Wish-Info.plist.in,v 1.1 2009/06/26 01:42:46 das Exp $
-->
<plist version="1.0">
<dict>
diff --git a/carbon/Wish-Release.xcconfig b/carbon/Wish-Release.xcconfig
index 9220946..d843341 100644
--- a/carbon/Wish-Release.xcconfig
+++ b/carbon/Wish-Release.xcconfig
@@ -8,9 +8,6 @@
//
// See the file "license.terms" for information on usage and redistribution
// of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-//
-// RCS: @(#) $Id: Wish-Release.xcconfig,v 1.1 2009/06/26 01:42:46 das Exp $
-//
#include "Wish-Common.xcconfig"
diff --git a/carbon/Wish.xcode/project.pbxproj b/carbon/Wish.xcode/project.pbxproj
index 9a6e61f..8fe9214 100644
--- a/carbon/Wish.xcode/project.pbxproj
+++ b/carbon/Wish.xcode/project.pbxproj
@@ -2163,7 +2163,7 @@
F966C06F08F281DC005CB29B /* Frameworks */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
- comments = "Copyright (c) 2004-2008 Daniel A. Steffen <das@users.sourceforge.net>\n\nSee the file \"license.terms\" for information on usage and redistribution of\nthis file, and for a DISCLAIMER OF ALL WARRANTIES.\n\nRCS: @(#) $Id: project.pbxproj,v 1.2 2009/08/24 00:58:42 das Exp $\n";
+ comments = "Copyright (c) 2004-2008 Daniel A. Steffen <das@users.sourceforge.net>\n\nSee the file \"license.terms\" for information on usage and redistribution of\nthis file, and for a DISCLAIMER OF ALL WARRANTIES.\n";
name = Wish;
path = .;
sourceTree = SOURCE_ROOT;
diff --git a/carbon/Wish.xcodeproj/project.pbxproj b/carbon/Wish.xcodeproj/project.pbxproj
index 5898b65..9c0a84c 100644
--- a/carbon/Wish.xcodeproj/project.pbxproj
+++ b/carbon/Wish.xcodeproj/project.pbxproj
@@ -2172,7 +2172,7 @@
F966C06F08F281DC005CB29B /* Frameworks */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
- comments = "Copyright (c) 2004-2008 Daniel A. Steffen <das@users.sourceforge.net>\n\nSee the file \"license.terms\" for information on usage and redistribution of\nthis file, and for a DISCLAIMER OF ALL WARRANTIES.\n\nRCS: @(#) $Id: project.pbxproj,v 1.2 2009/08/24 00:58:42 das Exp $\n";
+ comments = "Copyright (c) 2004-2008 Daniel A. Steffen <das@users.sourceforge.net>\n\nSee the file \"license.terms\" for information on usage and redistribution of\nthis file, and for a DISCLAIMER OF ALL WARRANTIES.\n";
name = Wish;
path = .;
sourceTree = SOURCE_ROOT;
diff --git a/carbon/configure.ac b/carbon/configure.ac
index 3759e51..229af64 100644
--- a/carbon/configure.ac
+++ b/carbon/configure.ac
@@ -2,8 +2,6 @@
dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
-#
-# RCS: @(#) $Id: configure.ac,v 1.1 2009/06/26 01:42:46 das Exp $
dnl Ensure that the config (auto)headers support is used, then just
dnl include the configure sources from ../unix:
diff --git a/carbon/tkAboutDlg.r b/carbon/tkAboutDlg.r
index 1cf3c61..1492b90 100644
--- a/carbon/tkAboutDlg.r
+++ b/carbon/tkAboutDlg.r
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkAboutDlg.r,v 1.1 2009/06/26 01:42:46 das Exp $
*/
/*
diff --git a/carbon/tkMacOSX.h b/carbon/tkMacOSX.h
index 773ae2c..a2a35a5 100644
--- a/carbon/tkMacOSX.h
+++ b/carbon/tkMacOSX.h
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSX.h,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#ifndef _TKMAC
diff --git a/carbon/tkMacOSXAETE.r b/carbon/tkMacOSXAETE.r
index 9f57d47..54bb8cc 100644
--- a/carbon/tkMacOSXAETE.r
+++ b/carbon/tkMacOSXAETE.r
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXAETE.r,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#define SystemSevenOrLater 1
diff --git a/carbon/tkMacOSXBitmap.c b/carbon/tkMacOSXBitmap.c
index 70dc9e7..0f569f0 100644
--- a/carbon/tkMacOSXBitmap.c
+++ b/carbon/tkMacOSXBitmap.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXBitmap.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXInt.h"
diff --git a/carbon/tkMacOSXButton.c b/carbon/tkMacOSXButton.c
index d02c8ad..b39696d 100644
--- a/carbon/tkMacOSXButton.c
+++ b/carbon/tkMacOSXButton.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXButton.c,v 1.3 2010/01/13 23:08:12 nijtmans Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXCarbonEvents.c b/carbon/tkMacOSXCarbonEvents.c
index 83914cf..1f60eaf 100644
--- a/carbon/tkMacOSXCarbonEvents.c
+++ b/carbon/tkMacOSXCarbonEvents.c
@@ -59,8 +59,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXCarbonEvents.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXClipboard.c b/carbon/tkMacOSXClipboard.c
index fad4f7d..07fc925 100644
--- a/carbon/tkMacOSXClipboard.c
+++ b/carbon/tkMacOSXClipboard.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXClipboard.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXColor.c b/carbon/tkMacOSXColor.c
index e139038..3217c69 100644
--- a/carbon/tkMacOSXColor.c
+++ b/carbon/tkMacOSXColor.c
@@ -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: tkMacOSXColor.c,v 1.2 2009/06/29 14:35:01 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXConfig.c b/carbon/tkMacOSXConfig.c
index 64bcf15..82d3104 100644
--- a/carbon/tkMacOSXConfig.c
+++ b/carbon/tkMacOSXConfig.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXConfig.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkInt.h"
diff --git a/carbon/tkMacOSXCursor.c b/carbon/tkMacOSXCursor.c
index d4d0019..c465764 100644
--- a/carbon/tkMacOSXCursor.c
+++ b/carbon/tkMacOSXCursor.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXCursor.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXCursors.r b/carbon/tkMacOSXCursors.r
index 16ff375..f947ddf 100644
--- a/carbon/tkMacOSXCursors.r
+++ b/carbon/tkMacOSXCursors.r
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXCursors.r,v 1.1 2009/06/26 01:42:46 das Exp $
*/
/*
diff --git a/carbon/tkMacOSXDebug.c b/carbon/tkMacOSXDebug.c
index 0c2f80c..e007a01 100644
--- a/carbon/tkMacOSXDebug.c
+++ b/carbon/tkMacOSXDebug.c
@@ -53,8 +53,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXDebug.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXDebug.h b/carbon/tkMacOSXDebug.h
index 77c9b88..8dc8109 100644
--- a/carbon/tkMacOSXDebug.h
+++ b/carbon/tkMacOSXDebug.h
@@ -53,8 +53,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXDebug.h,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#ifndef _TKMACDEBUG
diff --git a/carbon/tkMacOSXDefault.h b/carbon/tkMacOSXDefault.h
index 828833f..0cb57da 100644
--- a/carbon/tkMacOSXDefault.h
+++ b/carbon/tkMacOSXDefault.h
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXDefault.h,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#ifndef _TKMACDEFAULT
diff --git a/carbon/tkMacOSXDialog.c b/carbon/tkMacOSXDialog.c
index 3525dae..c5d1ae1 100644
--- a/carbon/tkMacOSXDialog.c
+++ b/carbon/tkMacOSXDialog.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.3 2010/06/15 12:40:07 nijtmans Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXDraw.c b/carbon/tkMacOSXDraw.c
index 60240d8..e028e45 100644
--- a/carbon/tkMacOSXDraw.c
+++ b/carbon/tkMacOSXDraw.c
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.2 2009/06/29 14:35:01 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXEmbed.c b/carbon/tkMacOSXEmbed.c
index 275f61d..ad9e3da 100644
--- a/carbon/tkMacOSXEmbed.c
+++ b/carbon/tkMacOSXEmbed.c
@@ -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: tkMacOSXEmbed.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXInt.h"
diff --git a/carbon/tkMacOSXEntry.c b/carbon/tkMacOSXEntry.c
index 74e216b..0c4211e 100644
--- a/carbon/tkMacOSXEntry.c
+++ b/carbon/tkMacOSXEntry.c
@@ -52,8 +52,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXEntry.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXEvent.c b/carbon/tkMacOSXEvent.c
index 9ebe715..d39a347 100644
--- a/carbon/tkMacOSXEvent.c
+++ b/carbon/tkMacOSXEvent.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXEvent.c,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXEvent.h b/carbon/tkMacOSXEvent.h
index c5f55bc..dc87b5f 100644
--- a/carbon/tkMacOSXEvent.h
+++ b/carbon/tkMacOSXEvent.h
@@ -53,8 +53,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXEvent.h,v 1.1 2009/06/26 01:42:46 das Exp $
*/
#ifndef _TKMACEVENT
diff --git a/carbon/tkMacOSXFont.c b/carbon/tkMacOSXFont.c
index 3ee7551..7933fe3 100644
--- a/carbon/tkMacOSXFont.c
+++ b/carbon/tkMacOSXFont.c
@@ -34,8 +34,6 @@
* be that at least some of them do not contain any Latin characters. Note
* that such fonts can not be used for controls, because controls
* definitely require a family id (this assertion needs testing).
- *
- * RCS: @(#) $Id: tkMacOSXFont.c,v 1.2 2010/12/02 11:38:29 dkf Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXFont.h b/carbon/tkMacOSXFont.h
index 503115d..e932fb7 100644
--- a/carbon/tkMacOSXFont.h
+++ b/carbon/tkMacOSXFont.h
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXFont.h,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#ifndef TKMACOSXFONT_H
diff --git a/carbon/tkMacOSXHLEvents.c b/carbon/tkMacOSXHLEvents.c
index 61c9eec..1ab050f 100644
--- a/carbon/tkMacOSXHLEvents.c
+++ b/carbon/tkMacOSXHLEvents.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXHLEvents.c,v 1.3 2009/08/24 00:56:00 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXInit.c b/carbon/tkMacOSXInit.c
index 928b63d..7e5803d 100644
--- a/carbon/tkMacOSXInit.c
+++ b/carbon/tkMacOSXInit.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXInit.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXInt.h b/carbon/tkMacOSXInt.h
index ce24386..48635c8 100644
--- a/carbon/tkMacOSXInt.h
+++ b/carbon/tkMacOSXInt.h
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXInt.h,v 1.2 2009/06/29 14:35:01 das Exp $
*/
#ifndef _TKMACINT
diff --git a/carbon/tkMacOSXKeyEvent.c b/carbon/tkMacOSXKeyEvent.c
index 5ffdbd5..d801f68 100644
--- a/carbon/tkMacOSXKeyEvent.c
+++ b/carbon/tkMacOSXKeyEvent.c
@@ -47,8 +47,6 @@
* authors grant the U.S. Government and others acting in its behalf
* permission to use and distribute the software in accordance with the
* terms specified in this license.
- *
- * RCS: @(#) $Id: tkMacOSXKeyEvent.c,v 1.2 2010/01/02 11:07:55 dkf Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXKeyboard.c b/carbon/tkMacOSXKeyboard.c
index 2e40a31..4e35db6 100644
--- a/carbon/tkMacOSXKeyboard.c
+++ b/carbon/tkMacOSXKeyboard.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXKeyboard.c,v 1.2 2009/12/16 22:00:30 nijtmans Exp $
*/
#include "tkMacOSXInt.h"
diff --git a/carbon/tkMacOSXMenu.c b/carbon/tkMacOSXMenu.c
index a31daf8..31bb20e 100644
--- a/carbon/tkMacOSXMenu.c
+++ b/carbon/tkMacOSXMenu.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.2 2010/05/10 20:58:18 nijtmans Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXMenubutton.c b/carbon/tkMacOSXMenubutton.c
index 7e603e4..9846d13 100644
--- a/carbon/tkMacOSXMenubutton.c
+++ b/carbon/tkMacOSXMenubutton.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXMenubutton.c,v 1.2 2010/01/13 23:08:12 nijtmans Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXMenus.c b/carbon/tkMacOSXMenus.c
index fcac0f4..8509f8c 100644
--- a/carbon/tkMacOSXMenus.c
+++ b/carbon/tkMacOSXMenus.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXMenus.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXMouseEvent.c b/carbon/tkMacOSXMouseEvent.c
index a653073..697e00d 100644
--- a/carbon/tkMacOSXMouseEvent.c
+++ b/carbon/tkMacOSXMouseEvent.c
@@ -47,8 +47,6 @@
* authors grant the U.S. Government and others acting in its behalf
* permission to use and distribute the software in accordance with the
* terms specified in this license.
- *
- * RCS: @(#) $Id: tkMacOSXMouseEvent.c,v 1.3 2010/01/06 14:58:30 dkf Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXNotify.c b/carbon/tkMacOSXNotify.c
index 817f016..fdd5afd 100644
--- a/carbon/tkMacOSXNotify.c
+++ b/carbon/tkMacOSXNotify.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXNotify.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXPort.h b/carbon/tkMacOSXPort.h
index afc59f5..b5bfcde 100644
--- a/carbon/tkMacOSXPort.h
+++ b/carbon/tkMacOSXPort.h
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXPort.h,v 1.2 2010/02/18 22:31:31 nijtmans Exp $
*/
#ifndef _TKMACPORT
diff --git a/carbon/tkMacOSXPrivate.h b/carbon/tkMacOSXPrivate.h
index 760b9df..72b418e 100644
--- a/carbon/tkMacOSXPrivate.h
+++ b/carbon/tkMacOSXPrivate.h
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXPrivate.h,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#ifndef _TKMACPRIV
diff --git a/carbon/tkMacOSXRegion.c b/carbon/tkMacOSXRegion.c
index 8be088c..e2faab0 100644
--- a/carbon/tkMacOSXRegion.c
+++ b/carbon/tkMacOSXRegion.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXRegion.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXScale.c b/carbon/tkMacOSXScale.c
index 8adcc73..bc46596 100644
--- a/carbon/tkMacOSXScale.c
+++ b/carbon/tkMacOSXScale.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXScale.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXScrlbr.c b/carbon/tkMacOSXScrlbr.c
index b6b9976..c991c88 100644
--- a/carbon/tkMacOSXScrlbr.c
+++ b/carbon/tkMacOSXScrlbr.c
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXScrlbr.c,v 1.4 2010/06/19 16:18:41 jenglish Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXSend.c b/carbon/tkMacOSXSend.c
index 2eb0b31..df6b2af 100644
--- a/carbon/tkMacOSXSend.c
+++ b/carbon/tkMacOSXSend.c
@@ -29,8 +29,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXSend.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXInt.h"
diff --git a/carbon/tkMacOSXSubwindows.c b/carbon/tkMacOSXSubwindows.c
index 48aef2d..23e73ff 100644
--- a/carbon/tkMacOSXSubwindows.c
+++ b/carbon/tkMacOSXSubwindows.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXSubwindows.c,v 1.2 2009/06/29 14:35:01 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXTest.c b/carbon/tkMacOSXTest.c
index 37dec11..d8e8aca 100644
--- a/carbon/tkMacOSXTest.c
+++ b/carbon/tkMacOSXTest.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXTest.c,v 1.2 2009/11/29 22:10:36 nijtmans Exp $
*/
#include "tkMacOSXInt.h"
diff --git a/carbon/tkMacOSXWindowEvent.c b/carbon/tkMacOSXWindowEvent.c
index fde14cb..2f46026 100644
--- a/carbon/tkMacOSXWindowEvent.c
+++ b/carbon/tkMacOSXWindowEvent.c
@@ -47,8 +47,6 @@
* authors grant the U.S. Government and others acting in its behalf
* permission to use and distribute the software in accordance with the
* terms specified in this license.
- *
- * RCS: @(#) $Id: tkMacOSXWindowEvent.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXWm.c b/carbon/tkMacOSXWm.c
index 6f66f8f..0ec8d74 100644
--- a/carbon/tkMacOSXWm.c
+++ b/carbon/tkMacOSXWm.c
@@ -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: tkMacOSXWm.c,v 1.2 2009/06/29 14:35:01 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/tkMacOSXWm.h b/carbon/tkMacOSXWm.h
index 3097375..ce4bede 100644
--- a/carbon/tkMacOSXWm.h
+++ b/carbon/tkMacOSXWm.h
@@ -52,8 +52,6 @@
* acting in its behalf permission to use and distribute the
* software in accordance with the terms specified in this
* license.
- *
- * RCS: @(#) $Id: tkMacOSXWm.h,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#ifndef _TKMACWM
diff --git a/carbon/tkMacOSXXCursors.r b/carbon/tkMacOSXXCursors.r
index 7fa7d39..81d2c00 100644
--- a/carbon/tkMacOSXXCursors.r
+++ b/carbon/tkMacOSXXCursors.r
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkMacOSXXCursors.r,v 1.1 2009/06/26 01:42:47 das Exp $
*/
/*
diff --git a/carbon/tkMacOSXXStubs.c b/carbon/tkMacOSXXStubs.c
index 4262ba9..33f20c4 100644
--- a/carbon/tkMacOSXXStubs.c
+++ b/carbon/tkMacOSXXStubs.c
@@ -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: tkMacOSXXStubs.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/carbon/ttkMacOSXTheme.c b/carbon/ttkMacOSXTheme.c
index 7af4d6f..5a895aa 100644
--- a/carbon/ttkMacOSXTheme.c
+++ b/carbon/ttkMacOSXTheme.c
@@ -26,8 +26,6 @@
* The QuickDraw/Carbon coordinate system is relative to the
* top-level window, not to the Tk_Window. BoxToRect()
* accounts for this.
- *
- * RCS: @(#) $Id: ttkMacOSXTheme.c,v 1.1 2009/06/26 01:42:47 das Exp $
*/
#include "tkMacOSXPrivate.h"
diff --git a/changes b/changes
index 056faf6..4c2f599 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.140 2010/11/10 17:44:24 andreas_kupries 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 ea66007..2c64890 100644
--- a/compat/stdlib.h
+++ b/compat/stdlib.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: stdlib.h,v 1.5 2010/04/20 08:17:26 nijtmans Exp $
*/
#ifndef _STDLIB
diff --git a/compat/unistd.h b/compat/unistd.h
index 396e17c..9064b06 100644
--- a/compat/unistd.h
+++ b/compat/unistd.h
@@ -9,8 +9,6 @@
* copyright notice appear in all copies. The University of California 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.4 2010/04/20 08:17:26 nijtmans Exp $
*/
#ifndef _UNISTD
diff --git a/doc/3DBorder.3 b/doc/3DBorder.3
index f693b5d..ba0881b 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.13 2009/05/04 09:12:33 dkf 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 882d23b..fe6107b 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.7 2008/06/30 22:57:00 dkf Exp $
-'\"
'\"
.so man.macros
.TH Tk_AddOption 3 "" Tk "Tk Library Procedures"
diff --git a/doc/BindTable.3 b/doc/BindTable.3
index 90b8ee0..24f8af5 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.8 2010/05/10 20:58:19 nijtmans 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 10f9f08..342ddb3 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.9 2009/05/04 09:12:33 dkf 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 4ea6620..1ddaa6b 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.10 2010/02/17 19:21:17 nijtmans 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 81080dd..fbfa913 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.6 2008/06/30 22:57:00 dkf 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 f7ab6f3..e06fae5 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.7 2009/05/04 09:12:33 dkf 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 a470390..545e63c 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.4 2008/07/08 22:40:50 patthoyts 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 1dd5b6e..9b83898 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.25 2010/02/17 19:21:17 nijtmans 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 1bc5a23..f19512a 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.4 2007/12/13 15:23:42 dgp 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 5e8996c..4e4eb66 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.4 2008/07/08 22:40:50 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_CoordsToWindow 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtCmHdlr.3 b/doc/CrtCmHdlr.3
index fbe6a95..05616fb 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.5 2008/06/30 22:57:00 dkf Exp $
-'\"
.so man.macros
.TH Tk_CreateClientMessageHandler 3 "8.4" Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtConsoleChan.3 b/doc/CrtConsoleChan.3
index e9e4189..65feab7 100644
--- a/doc/CrtConsoleChan.3
+++ b/doc/CrtConsoleChan.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: CrtConsoleChan.3,v 1.3 2007/12/13 15:23:42 dgp Exp $
-'\"
.so man.macros
.TH Tk_InitConsoleChannels 3 8.5 Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtErrHdlr.3 b/doc/CrtErrHdlr.3
index 8f5ff62..acbd9f6 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.8 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_CreateErrorHandler 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtGenHdlr.3 b/doc/CrtGenHdlr.3
index 004e01a..68a2cd8 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.5 2008/07/08 22:40:50 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_CreateGenericHandler 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtImgType.3 b/doc/CrtImgType.3
index 2505272..d93f4b4 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.16 2008/11/12 00:15:26 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_CreateImageType 3 8.5 Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtItemType.3 b/doc/CrtItemType.3
index d97717d..bc034a7 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.16 2010/02/17 19:21:17 nijtmans 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 6c535a6..68c9c56 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.12 2008/11/09 23:16:56 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_CreatePhotoImageFormat 3 8.5 Tk "Tk Library Procedures"
.BS
diff --git a/doc/CrtSelHdlr.3 b/doc/CrtSelHdlr.3
index 9b0a466..b7758df 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.6 2008/06/30 22:57:01 dkf 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 66188b1..4a67f80 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.14 2009/05/04 09:12:33 dkf 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 4e40926..5cde9e7 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.5 2008/06/30 22:57:01 dkf 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 a3dffed..cfe5ddd 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.5 2008/07/08 22:40:50 patthoyts 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 36ac475..8da777d 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.7 2008/07/08 22:40:50 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_CreateEventHandler 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/FindPhoto.3 b/doc/FindPhoto.3
index 8d5932f..950d208 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.11 2008/06/30 22:57:01 dkf 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 8375cb4..69991fd 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.12 2008/06/30 22:57:01 dkf 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 906483f..eb1da96 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.6 2007/12/13 15:23:43 dgp 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 ab2223a..ed447b9 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.5 2008/07/08 22:40:50 patthoyts 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 1a1de90..2ed7627 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.11 2009/07/26 19:50:50 dkf 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 8370012..d5482f6 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.18 2009/05/04 09:12:33 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 12efa6b..3c9dbb0 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.11 2009/07/26 19:44:31 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetCapStyle 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetClrmap.3 b/doc/GetClrmap.3
index cfb84d9..13ad9b2 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.7 2008/03/19 15:34:41 dkf 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 33c8420..f41a87a 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.9 2008/06/30 22:57:01 dkf 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 f4833e7..3946105 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.15 2008/11/05 22:58:29 nijtmans 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 67b0830..a0a4c81 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.9 2010/01/12 15:38:49 dkf 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 741ad93..572b94f 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.12 2008/06/30 22:57:01 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 c2b61b9..4c6f9ff 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.4 2008/07/08 22:40:50 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_GetGC 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetHINSTANCE.3 b/doc/GetHINSTANCE.3
index 10fd8a3..07c9ddd 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.4 2009/11/19 22:48:32 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_GetHISTANCE 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetHWND.3 b/doc/GetHWND.3
index 7356f89..c78df98 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.6 2008/07/08 22:40:50 patthoyts 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 a6fc19d..59232aa 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.11 2009/05/04 09:12:33 dkf 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 67d5e0c..5e527de 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.11 2009/07/26 19:43:05 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetJoinStyle 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetJustify.3 b/doc/GetJustify.3
index 66f735a..e9d59e9 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.12 2009/07/26 19:45:52 dkf 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 3ccd8b3..4e13b9b 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.5 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetOption 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetPixels.3 b/doc/GetPixels.3
index a3e7cb0..05fe902 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.9 2008/06/30 22:57:01 dkf 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 93460c0..63d7d62 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.4 2008/07/08 22:40:50 patthoyts 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 2344c46..858c128 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.12 2009/07/26 19:52:47 dkf 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 7245d38..7c46b5f 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.4 2007/12/13 15:23:43 dgp Exp $
-'\"
.so man.macros
.TH Tk_GetRootCoords 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetScroll.3 b/doc/GetScroll.3
index b5bb7f8..9c10450 100644
--- a/doc/GetScroll.3
+++ b/doc/GetScroll.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: GetScroll.3,v 1.9 2009/07/27 20:02:15 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetScrollInfo 3 8.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetSelect.3 b/doc/GetSelect.3
index 9cdc1bd..63f655a 100644
--- a/doc/GetSelect.3
+++ b/doc/GetSelect.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: GetSelect.3,v 1.7 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetSelection 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetUid.3 b/doc/GetUid.3
index 08a6f03..677bbaa 100644
--- a/doc/GetUid.3
+++ b/doc/GetUid.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: GetUid.3,v 1.9 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetUid 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetVRoot.3 b/doc/GetVRoot.3
index 672d949..7311e3b 100644
--- a/doc/GetVRoot.3
+++ b/doc/GetVRoot.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: GetVRoot.3,v 1.8 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetVRootGeometry 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/GetVisual.3 b/doc/GetVisual.3
index a859e7a..8e022c0 100644
--- a/doc/GetVisual.3
+++ b/doc/GetVisual.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: GetVisual.3,v 1.9 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetVisual 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/Grab.3 b/doc/Grab.3
index fd4c2f7..08297b3 100644
--- a/doc/Grab.3
+++ b/doc/Grab.3
@@ -2,8 +2,6 @@
'\" Copyright (c) 1998-2000 by Scriptics Corporation.
'\" All rights reserved.
'\"
-'\" RCS: @(#) $Id: Grab.3,v 1.4 2008/07/08 22:40:50 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_Grab 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/HWNDToWindow.3 b/doc/HWNDToWindow.3
index 8fdf4a2..684a4e7 100644
--- a/doc/HWNDToWindow.3
+++ b/doc/HWNDToWindow.3
@@ -2,8 +2,6 @@
'\" Copyright (c) 1998-2000 by Scriptics Corporation.
'\" All rights reserved.
'\"
-'\" RCS: @(#) $Id: HWNDToWindow.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_HWNDToWindow 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/HandleEvent.3 b/doc/HandleEvent.3
index f313907..7824c5c 100644
--- a/doc/HandleEvent.3
+++ b/doc/HandleEvent.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: HandleEvent.3,v 1.7 2010/01/02 11:07:56 dkf Exp $
-'\"
.so man.macros
.TH Tk_HandleEvent 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/IdToWindow.3 b/doc/IdToWindow.3
index f6e2486..e04c290 100644
--- a/doc/IdToWindow.3
+++ b/doc/IdToWindow.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: IdToWindow.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_IdToWindow 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/ImgChanged.3 b/doc/ImgChanged.3
index 7344c53..55b24d4 100644
--- a/doc/ImgChanged.3
+++ b/doc/ImgChanged.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: ImgChanged.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_ImageChanged 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/Inactive.3 b/doc/Inactive.3
index ff92175..825fd8b 100644
--- a/doc/Inactive.3
+++ b/doc/Inactive.3
@@ -2,8 +2,6 @@
'\" Copyright (c) 1998-2000 by Scriptics Corporation.
'\" All rights reserved.
'\"
-'\" RCS: @(#) $Id: Inactive.3,v 1.4 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_GetUserInactiveTime 3 8.5 Tk "Tk Library Procedures"
.BS
diff --git a/doc/InternAtom.3 b/doc/InternAtom.3
index 5800ff0..37a6c3c 100644
--- a/doc/InternAtom.3
+++ b/doc/InternAtom.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: InternAtom.3,v 1.10 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_InternAtom 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/MainLoop.3 b/doc/MainLoop.3
index d3129e0..ae38d6c 100644
--- a/doc/MainLoop.3
+++ b/doc/MainLoop.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: MainLoop.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_MainLoop 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/MainWin.3 b/doc/MainWin.3
index 14860d5..536679a 100644
--- a/doc/MainWin.3
+++ b/doc/MainWin.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: MainWin.3,v 1.7 2009/05/05 09:22:15 dkf Exp $
-'\"
.so man.macros
.TH Tk_MainWindow 3 7.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/MaintGeom.3 b/doc/MaintGeom.3
index 0027064..13e35fe 100644
--- a/doc/MaintGeom.3
+++ b/doc/MaintGeom.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: MaintGeom.3,v 1.6 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_MaintainGeometry 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/ManageGeom.3 b/doc/ManageGeom.3
index 272a220..2c6c534 100644
--- a/doc/ManageGeom.3
+++ b/doc/ManageGeom.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: ManageGeom.3,v 1.7 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_ManageGeometry 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/MapWindow.3 b/doc/MapWindow.3
index a0094ae..f876d24 100644
--- a/doc/MapWindow.3
+++ b/doc/MapWindow.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: MapWindow.3,v 1.7 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_MapWindow 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/MeasureChar.3 b/doc/MeasureChar.3
index 5a9b5ed..c8164f3 100644
--- a/doc/MeasureChar.3
+++ b/doc/MeasureChar.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: MeasureChar.3,v 1.10 2008/02/04 09:53:24 dkf Exp $
-'\"
.so man.macros
.TH Tk_MeasureChars 3 8.1 Tk "Tk Library Procedures"
.BS
diff --git a/doc/MoveToplev.3 b/doc/MoveToplev.3
index 50d5aa7..4cd39e2 100644
--- a/doc/MoveToplev.3
+++ b/doc/MoveToplev.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: MoveToplev.3,v 1.5 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_MoveToplevelWindow 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/Name.3 b/doc/Name.3
index 56e184e..697eae3 100644
--- a/doc/Name.3
+++ b/doc/Name.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: Name.3,v 1.11 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_Name 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/NameOfImg.3 b/doc/NameOfImg.3
index cc35f68..5461262 100644
--- a/doc/NameOfImg.3
+++ b/doc/NameOfImg.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: NameOfImg.3,v 1.5 2008/06/30 22:57:01 dkf Exp $
-'\"
.so man.macros
.TH Tk_NameOfImage 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/OwnSelect.3 b/doc/OwnSelect.3
index 83b5b25..b0da542 100644
--- a/doc/OwnSelect.3
+++ b/doc/OwnSelect.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: OwnSelect.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_OwnSelection 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/ParseArgv.3 b/doc/ParseArgv.3
index b24a3f6..1681305 100644
--- a/doc/ParseArgv.3
+++ b/doc/ParseArgv.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: ParseArgv.3,v 1.13 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_ParseArgv 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/QWinEvent.3 b/doc/QWinEvent.3
index 7066d49..f98d29b 100644
--- a/doc/QWinEvent.3
+++ b/doc/QWinEvent.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: QWinEvent.3,v 1.6 2010/01/02 11:07:56 dkf Exp $
-'\"
.so man.macros
.TH Tk_QueueWindowEvent 3 7.5 Tk "Tk Library Procedures"
.BS
diff --git a/doc/Restack.3 b/doc/Restack.3
index cda9284..49876b0 100644
--- a/doc/Restack.3
+++ b/doc/Restack.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: Restack.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_RestackWindow 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/RestrictEv.3 b/doc/RestrictEv.3
index ad59124..d208955 100644
--- a/doc/RestrictEv.3
+++ b/doc/RestrictEv.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: RestrictEv.3,v 1.9 2010/05/11 12:12:50 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_RestrictEvents 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetAppName.3 b/doc/SetAppName.3
index 4182ed0..60ac14f 100644
--- a/doc/SetAppName.3
+++ b/doc/SetAppName.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: SetAppName.3,v 1.9 2008/06/30 22:57:02 dkf Exp $
-'\"
.so man.macros
.TH Tk_SetAppName 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetCaret.3 b/doc/SetCaret.3
index e01c89d..5fd4f1f 100644
--- a/doc/SetCaret.3
+++ b/doc/SetCaret.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: SetCaret.3,v 1.3 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_SetCaretPos 3 8.4 Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetClass.3 b/doc/SetClass.3
index 2fb095f..46f3c1b 100644
--- a/doc/SetClass.3
+++ b/doc/SetClass.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: SetClass.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_SetClass 3 "" Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetClassProcs.3 b/doc/SetClassProcs.3
index 23567c3..e0398f5 100644
--- a/doc/SetClassProcs.3
+++ b/doc/SetClassProcs.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: SetClassProcs.3,v 1.6 2010/01/10 20:27:25 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_SetClassProcs 3 8.4 Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetGrid.3 b/doc/SetGrid.3
index 57efb97..5fe4509 100644
--- a/doc/SetGrid.3
+++ b/doc/SetGrid.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: SetGrid.3,v 1.4 2008/07/08 22:40:51 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_SetGrid 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetOptions.3 b/doc/SetOptions.3
index 20098cc..e9758ce 100644
--- a/doc/SetOptions.3
+++ b/doc/SetOptions.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: SetOptions.3,v 1.18 2008/06/30 22:57:02 dkf Exp $
-'\"
.so man.macros
.TH Tk_SetOptions 3 8.1 Tk "Tk Library Procedures"
.BS
diff --git a/doc/SetVisual.3 b/doc/SetVisual.3
index 5698bad..e902ed4 100644
--- a/doc/SetVisual.3
+++ b/doc/SetVisual.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: SetVisual.3,v 1.5 2008/06/30 22:57:02 dkf Exp $
-'\"
.so man.macros
.TH Tk_SetWindowVisual 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/StrictMotif.3 b/doc/StrictMotif.3
index 0623467..4e898fd 100644
--- a/doc/StrictMotif.3
+++ b/doc/StrictMotif.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: StrictMotif.3,v 1.7 2008/06/30 22:57:02 dkf Exp $
-'\"
.so man.macros
.TH Tk_StrictMotif 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/TextLayout.3 b/doc/TextLayout.3
index 7d2f5c5..706eaf5 100644
--- a/doc/TextLayout.3
+++ b/doc/TextLayout.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: TextLayout.3,v 1.13 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_ComputeTextLayout 3 8.1 Tk "Tk Library Procedures"
.BS
diff --git a/doc/TkInitStubs.3 b/doc/TkInitStubs.3
index 02cb4df..79b7116 100644
--- a/doc/TkInitStubs.3
+++ b/doc/TkInitStubs.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: TkInitStubs.3,v 1.10 2010/01/04 22:06:47 patthoyts Exp $
-'\"
.so man.macros
.TH Tk_InitStubs 3 8.4 Tk "Tk Library Procedures"
.BS
diff --git a/doc/Tk_Init.3 b/doc/Tk_Init.3
index 95cf483..cf93e58 100644
--- a/doc/Tk_Init.3
+++ b/doc/Tk_Init.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: Tk_Init.3,v 1.8 2009/05/04 09:12:33 dkf Exp $
-'\"
.so man.macros
.TH Tk_Init 3 8.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/Tk_Main.3 b/doc/Tk_Main.3
index c853d84..5db887b 100644
--- a/doc/Tk_Main.3
+++ b/doc/Tk_Main.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: Tk_Main.3,v 1.10 2010/10/11 21:50:46 nijtmans Exp $
-'\"
.so man.macros
.TH Tk_Main 3 4.0 Tk "Tk Library Procedures"
.BS
diff --git a/doc/WindowId.3 b/doc/WindowId.3
index 61a1a04..30f80a3 100644
--- a/doc/WindowId.3
+++ b/doc/WindowId.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: WindowId.3,v 1.14 2008/06/30 22:57:02 dkf Exp $
-'\"
.so man.macros
.TH Tk_WindowId 3 "8.4" Tk "Tk Library Procedures"
.BS
diff --git a/doc/bell.n b/doc/bell.n
index 94192b6..94d1545 100644
--- a/doc/bell.n
+++ b/doc/bell.n
@@ -6,8 +6,6 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: bell.n,v 1.7 2008/09/23 13:36:36 dkf Exp $
-'\"
.so man.macros
.TH bell n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/bind.n b/doc/bind.n
index e1893a5..bccd6c8 100644
--- a/doc/bind.n
+++ b/doc/bind.n
@@ -6,8 +6,6 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: bind.n,v 1.32 2009/01/03 00:05:19 ferrieux Exp $
-'\"
.so man.macros
.TH bind n 8.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/bindtags.n b/doc/bindtags.n
index 1cdb21a..74bd638 100644
--- a/doc/bindtags.n
+++ b/doc/bindtags.n
@@ -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: bindtags.n,v 1.10 2008/09/23 13:36:36 dkf Exp $
-'\"
.so man.macros
.TH bindtags n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/bitmap.n b/doc/bitmap.n
index 36a58b4..968e6ea 100644
--- a/doc/bitmap.n
+++ b/doc/bitmap.n
@@ -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: bitmap.n,v 1.6 2010/01/13 15:56:22 dkf Exp $
-'\"
.so man.macros
.TH bitmap n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/busy.n b/doc/busy.n
index 70fae31..0584027 100644
--- a/doc/busy.n
+++ b/doc/busy.n
@@ -23,8 +23,6 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: busy.n,v 1.3 2008/12/27 18:41:18 jenglish Exp $
-'\"
.so man.macros
.TH busy n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/button.n b/doc/button.n
index 0089118..d568246 100644
--- a/doc/button.n
+++ b/doc/button.n
@@ -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: button.n,v 1.19 2008/09/23 13:36:36 dkf Exp $
-'\"
.so man.macros
.TH button n 4.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/canvas.n b/doc/canvas.n
index 1406189..0df3f39 100644
--- a/doc/canvas.n
+++ b/doc/canvas.n
@@ -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: canvas.n,v 1.46 2010/01/13 09:34:17 dkf Exp $
'\"
.so man.macros
.TH canvas n 8.3 Tk "Tk Built-In Commands"
diff --git a/doc/checkbutton.n b/doc/checkbutton.n
index d39d466..4a4d2bd 100644
--- a/doc/checkbutton.n
+++ b/doc/checkbutton.n
@@ -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: checkbutton.n,v 1.21 2008/09/23 13:36:37 dkf Exp $
-'\"
.so man.macros
.TH checkbutton n 4.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/chooseColor.n b/doc/chooseColor.n
index d4dddcd..645b9c1 100644
--- a/doc/chooseColor.n
+++ b/doc/chooseColor.n
@@ -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: chooseColor.n,v 1.7 2008/09/23 13:36:37 dkf Exp $
-'\"
.so man.macros
.TH tk_chooseColor n 4.2 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/chooseDirectory.n b/doc/chooseDirectory.n
index 9060845..2d96825 100644
--- a/doc/chooseDirectory.n
+++ b/doc/chooseDirectory.n
@@ -2,8 +2,6 @@
'\" Copyright (c) 1998-2000 by Scriptics Corporation.
'\" All rights reserved.
'\"
-'\" RCS: @(#) $Id: chooseDirectory.n,v 1.13 2008/09/23 13:36:37 dkf Exp $
-'\"
.so man.macros
.TH tk_chooseDirectory n 8.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/clipboard.n b/doc/clipboard.n
index b897b65..ed62bdf 100644
--- a/doc/clipboard.n
+++ b/doc/clipboard.n
@@ -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.n,v 1.20 2010/03/04 13:32:20 dkf Exp $
-'\"
.so man.macros
.TH clipboard n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/colors.n b/doc/colors.n
index b4ad921..80567c3 100644
--- a/doc/colors.n
+++ b/doc/colors.n
@@ -4,7 +4,6 @@
'\" Copyright (c) 2006-2007 Daniel A. Steffen <das@users.sourceforge.net>
'\" Copyright (c) 2008 Donal K. Fellows
'\"
-'\" RCS: @(#) $Id: colors.n,v 1.11 2008/09/23 13:36:37 dkf Exp $
'\"
'\"
.so man.macros
diff --git a/doc/console.n b/doc/console.n
index 2fccb41..bce765d 100644
--- a/doc/console.n
+++ b/doc/console.n
@@ -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: console.n,v 1.13 2008/09/23 13:36:38 dkf Exp $
-'\"
.so man.macros
.TH console n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/cursors.n b/doc/cursors.n
index f2fca99..57b1399 100644
--- a/doc/cursors.n
+++ b/doc/cursors.n
@@ -4,9 +4,6 @@
'\"
'\" Copyright (c) 2006-2007 Daniel A. Steffen <das@users.sourceforge.net>
'\"
-'\" RCS: @(#) $Id: cursors.n,v 1.11 2009/06/29 14:35:01 das Exp $
-'\"
-'\"
.so man.macros
.TH cursors n 8.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/destroy.n b/doc/destroy.n
index de8aca9..ee56754 100644
--- a/doc/destroy.n
+++ b/doc/destroy.n
@@ -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: destroy.n,v 1.9 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH destroy n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/dialog.n b/doc/dialog.n
index b8c939c..e35f33f 100644
--- a/doc/dialog.n
+++ b/doc/dialog.n
@@ -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: dialog.n,v 1.9 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH tk_dialog n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/entry.n b/doc/entry.n
index 46b1aa4..649bc73 100644
--- a/doc/entry.n
+++ b/doc/entry.n
@@ -6,8 +6,6 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: entry.n,v 1.24 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH entry n 8.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/event.n b/doc/event.n
index c47a5fc..df77385 100644
--- a/doc/event.n
+++ b/doc/event.n
@@ -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: event.n,v 1.23 2010/01/06 18:37:36 dkf Exp $
-'\"
.so man.macros
.TH event n 8.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/focus.n b/doc/focus.n
index 4fbe875..576db30 100644
--- a/doc/focus.n
+++ b/doc/focus.n
@@ -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: focus.n,v 1.8 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH focus n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/focusNext.n b/doc/focusNext.n
index a376e54..cef5ce2 100644
--- a/doc/focusNext.n
+++ b/doc/focusNext.n
@@ -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: focusNext.n,v 1.8 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH tk_focusNext n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/font.n b/doc/font.n
index 3184767..6a2c21e 100644
--- a/doc/font.n
+++ b/doc/font.n
@@ -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: font.n,v 1.24 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH font n 8.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/fontchooser.n b/doc/fontchooser.n
index 6e3a766..310ba1a 100644
--- a/doc/fontchooser.n
+++ b/doc/fontchooser.n
@@ -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: fontchooser.n,v 1.1 2008/12/10 05:02:40 das Exp $
-'\"
.so man.macros
.TH fontchooser n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/frame.n b/doc/frame.n
index 712e5ef..2222f89 100644
--- a/doc/frame.n
+++ b/doc/frame.n
@@ -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: frame.n,v 1.11 2008/09/23 13:36:39 dkf Exp $
-'\"
.so man.macros
.TH frame n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/getOpenFile.n b/doc/getOpenFile.n
index f378c44..0296bfa 100644
--- a/doc/getOpenFile.n
+++ b/doc/getOpenFile.n
@@ -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: getOpenFile.n,v 1.26 2009/10/22 10:12:57 dkf Exp $
-'\"
.so man.macros
.TH tk_getOpenFile n 4.2 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/grab.n b/doc/grab.n
index 670dc9d..1b4857e 100644
--- a/doc/grab.n
+++ b/doc/grab.n
@@ -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: grab.n,v 1.11 2008/10/18 14:22:21 dkf Exp $
-'\"
.so man.macros
.TH grab n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/grid.n b/doc/grid.n
index 6a98023..981d939 100644
--- a/doc/grid.n
+++ b/doc/grid.n
@@ -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: grid.n,v 1.23 2009/07/11 07:25:32 dkf Exp $
-'\"
.so man.macros
.TH grid n 8.5 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/image.n b/doc/image.n
index 68729bd..ef547b9 100644
--- a/doc/image.n
+++ b/doc/image.n
@@ -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: image.n,v 1.11 2008/09/23 13:36:40 dkf Exp $
-'\"
.so man.macros
.TH image n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/keysyms.n b/doc/keysyms.n
index 2fbf260..e85da8c 100644
--- a/doc/keysyms.n
+++ b/doc/keysyms.n
@@ -1,9 +1,6 @@
'\"
'\" Copyright (c) 1998-2000 by Scriptics Corporation.
'\" All rights reserved.
-'\"
-'\" RCS: @(#) $Id: keysyms.n,v 1.8 2010/01/13 15:59:33 dkf Exp $
-'\"
'\"
.so man.macros
.TH keysyms n 8.3 Tk "Tk Built-In Commands"
diff --git a/doc/label.n b/doc/label.n
index 64a7075..c7c84ca 100644
--- a/doc/label.n
+++ b/doc/label.n
@@ -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: label.n,v 1.14 2008/09/23 13:36:41 dkf Exp $
-'\"
.so man.macros
.TH label n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/labelframe.n b/doc/labelframe.n
index 84be637..2c05b54 100644
--- a/doc/labelframe.n
+++ b/doc/labelframe.n
@@ -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: labelframe.n,v 1.10 2008/09/23 13:36:41 dkf Exp $
-'\"
.so man.macros
.TH labelframe n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/listbox.n b/doc/listbox.n
index ae6f828..8150cba 100644
--- a/doc/listbox.n
+++ b/doc/listbox.n
@@ -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: listbox.n,v 1.22 2009/11/02 00:40:08 dkf Exp $
-'\"
.so man.macros
.TH listbox n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/loadTk.n b/doc/loadTk.n
index 06f7336..6d4b070 100644
--- a/doc/loadTk.n
+++ b/doc/loadTk.n
@@ -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: loadTk.n,v 1.16 2010/01/14 14:00:39 dkf Exp $
-'\"
.so man.macros
.TH "Safe Tk" n 8.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/lower.n b/doc/lower.n
index b81ddfb..d3b232d 100644
--- a/doc/lower.n
+++ b/doc/lower.n
@@ -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: lower.n,v 1.5 2008/09/23 13:36:42 dkf Exp $
-'\"
.so man.macros
.TH lower n 3.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/menu.n b/doc/menu.n
index 15cc4cc..59ed82b 100644
--- a/doc/menu.n
+++ b/doc/menu.n
@@ -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: menu.n,v 1.33 2010/01/10 20:38:54 dkf Exp $
-'\"
.so man.macros
.TH menu n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/menubar.n b/doc/menubar.n
index 16509d7..0f6dd83 100644
--- a/doc/menubar.n
+++ b/doc/menubar.n
@@ -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: menubar.n,v 1.6 2008/09/23 13:36:42 dkf Exp $
-'\"
.so man.macros
.TH tk_menuBar n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/menubutton.n b/doc/menubutton.n
index c619240..74d26c1 100644
--- a/doc/menubutton.n
+++ b/doc/menubutton.n
@@ -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: menubutton.n,v 1.12 2008/09/23 13:36:42 dkf Exp $
-'\"
.so man.macros
.TH menubutton n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/message.n b/doc/message.n
index 48ef249..a61ed29 100644
--- a/doc/message.n
+++ b/doc/message.n
@@ -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: message.n,v 1.11 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH message n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/messageBox.n b/doc/messageBox.n
index d956f7e..db24f76 100644
--- a/doc/messageBox.n
+++ b/doc/messageBox.n
@@ -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: messageBox.n,v 1.13 2009/04/04 16:18:37 dkf Exp $
-'\"
.so man.macros
.TH tk_messageBox n 4.2 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/option.n b/doc/option.n
index cd83ca5..4b9a5a7 100644
--- a/doc/option.n
+++ b/doc/option.n
@@ -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: option.n,v 1.11 2010/01/10 20:38:54 dkf Exp $
-'\"
.so man.macros
.TH option n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/optionMenu.n b/doc/optionMenu.n
index ccf9440..1c01eb0 100644
--- a/doc/optionMenu.n
+++ b/doc/optionMenu.n
@@ -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: optionMenu.n,v 1.8 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH tk_optionMenu n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/options.n b/doc/options.n
index ef3ba8c..58d187d 100644
--- a/doc/options.n
+++ b/doc/options.n
@@ -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: options.n,v 1.18 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH options n 4.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/pack-old.n b/doc/pack-old.n
index 63672e8..a027b1f 100644
--- a/doc/pack-old.n
+++ b/doc/pack-old.n
@@ -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: pack-old.n,v 1.7 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH pack-old n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/pack.n b/doc/pack.n
index f5d8d93..4df48f2 100644
--- a/doc/pack.n
+++ b/doc/pack.n
@@ -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: pack.n,v 1.13 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH pack n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/palette.n b/doc/palette.n
index c50ca38..d654959 100644
--- a/doc/palette.n
+++ b/doc/palette.n
@@ -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: palette.n,v 1.10 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH tk_setPalette n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/panedwindow.n b/doc/panedwindow.n
index 654c59d..50e4e9c 100644
--- a/doc/panedwindow.n
+++ b/doc/panedwindow.n
@@ -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: panedwindow.n,v 1.16 2008/09/23 13:36:45 dkf Exp $
-'\"
.so man.macros
.TH panedwindow n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/photo.n b/doc/photo.n
index 81bffb0..12f0372 100644
--- a/doc/photo.n
+++ b/doc/photo.n
@@ -9,8 +9,6 @@
'\" Department of Computer Science,
'\" Australian National University.
'\"
-'\" RCS: @(#) $Id: photo.n,v 1.29 2010/04/09 14:45:35 nijtmans Exp $
-'\"
.so man.macros
.TH photo n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/place.n b/doc/place.n
index 5f65305..af1ea43 100644
--- a/doc/place.n
+++ b/doc/place.n
@@ -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: place.n,v 1.13 2008/09/23 13:36:46 dkf Exp $
-'\"
.so man.macros
.TH place n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/popup.n b/doc/popup.n
index a13eb7d..2dea83f 100644
--- a/doc/popup.n
+++ b/doc/popup.n
@@ -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: popup.n,v 1.7 2008/09/23 13:36:46 dkf Exp $
-'\"
.so man.macros
.TH tk_popup n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/radiobutton.n b/doc/radiobutton.n
index 6a7bb05..034156f 100644
--- a/doc/radiobutton.n
+++ b/doc/radiobutton.n
@@ -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: radiobutton.n,v 1.18 2008/09/23 13:36:54 dkf Exp $
-'\"
.so man.macros
.TH radiobutton n 4.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/raise.n b/doc/raise.n
index 261fd2a..d2a48ba 100644
--- a/doc/raise.n
+++ b/doc/raise.n
@@ -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: raise.n,v 1.7 2008/09/23 13:36:54 dkf Exp $
-'\"
.so man.macros
.TH raise n 3.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/scale.n b/doc/scale.n
index d040d6a..e86a87a 100644
--- a/doc/scale.n
+++ b/doc/scale.n
@@ -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: scale.n,v 1.12 2008/09/23 13:36:54 dkf Exp $
-'\"
.so man.macros
.TH scale n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/scrollbar.n b/doc/scrollbar.n
index 4ca32d8..f961bce 100644
--- a/doc/scrollbar.n
+++ b/doc/scrollbar.n
@@ -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: scrollbar.n,v 1.12 2008/09/23 13:36:54 dkf Exp $
-'\"
.so man.macros
.TH scrollbar n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/selection.n b/doc/selection.n
index 20a41ef..69f6245 100644
--- a/doc/selection.n
+++ b/doc/selection.n
@@ -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: selection.n,v 1.16 2010/01/13 16:16:30 dkf Exp $
-'\"
.so man.macros
.TH selection n 8.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/send.n b/doc/send.n
index 6c67ca5..6b6d46b 100644
--- a/doc/send.n
+++ b/doc/send.n
@@ -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: send.n,v 1.11 2008/09/23 13:36:55 dkf Exp $
-'\"
.so man.macros
.TH send n 4.0 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/spinbox.n b/doc/spinbox.n
index 82b2fc8..cc00d58 100644
--- a/doc/spinbox.n
+++ b/doc/spinbox.n
@@ -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: spinbox.n,v 1.11 2008/09/23 13:36:55 dkf Exp $
-'\"
.so man.macros
.TH spinbox n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/text.n b/doc/text.n
index d2b9eb6..569b13f 100644
--- a/doc/text.n
+++ b/doc/text.n
@@ -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: text.n,v 1.60 2010/07/06 17:15:04 andreas_kupries Exp $
-'\"
.so man.macros
.TH text n 8.5 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/tk.n b/doc/tk.n
index e83f900..7390261 100644
--- a/doc/tk.n
+++ b/doc/tk.n
@@ -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: tk.n,v 1.23 2010/01/13 15:41:29 dkf Exp $
-'\"
.so man.macros
.TH tk n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/tkerror.n b/doc/tkerror.n
index 0abc87b..8d45ad2 100644
--- a/doc/tkerror.n
+++ b/doc/tkerror.n
@@ -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: tkerror.n,v 1.5 2008/09/23 13:36:55 dkf Exp $
-'\"
.so man.macros
.TH tkerror n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/tkvars.n b/doc/tkvars.n
index 1bc6217..e44cf35 100644
--- a/doc/tkvars.n
+++ b/doc/tkvars.n
@@ -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: tkvars.n,v 1.9 2010/01/14 11:50:51 dkf Exp $
-'\"
.so man.macros
.TH tkvars n 4.1 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/tkwait.n b/doc/tkwait.n
index b5611c7..9828ad0 100644
--- a/doc/tkwait.n
+++ b/doc/tkwait.n
@@ -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: tkwait.n,v 1.5 2008/09/23 13:36:56 dkf Exp $
-'\"
.so man.macros
.TH tkwait n "" Tk "Tk Built-In Commands"
.BS
diff --git a/doc/toplevel.n b/doc/toplevel.n
index f213a21..6fbc878 100644
--- a/doc/toplevel.n
+++ b/doc/toplevel.n
@@ -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: toplevel.n,v 1.10 2008/06/30 22:57:03 dkf Exp $
-'\"
.so man.macros
.TH toplevel n 8.4 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/ttk_Geometry.3 b/doc/ttk_Geometry.3
index 0923d02..5a0ce4f 100644
--- a/doc/ttk_Geometry.3
+++ b/doc/ttk_Geometry.3
@@ -1,8 +1,6 @@
'\"
'\" Copyright (c) 2004 Joe English
'\"
-'\" RCS: @(#) $Id: ttk_Geometry.3,v 1.5 2008/06/30 22:57:03 dkf Exp $
-'\"
.so man.macros
.TH Geometry 3 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_Theme.3 b/doc/ttk_Theme.3
index 9340d0f..acd0e98 100644
--- a/doc/ttk_Theme.3
+++ b/doc/ttk_Theme.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: ttk_Theme.3,v 1.2 2008/06/30 22:57:03 dkf Exp $
-'\"
.so man.macros
.TH Ttk_CreateTheme 3 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_button.n b/doc/ttk_button.n
index 1232c94..c6f2308 100644
--- a/doc/ttk_button.n
+++ b/doc/ttk_button.n
@@ -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: ttk_button.n,v 1.16 2009/04/30 13:54:04 dkf Exp $
-'\"
.so man.macros
.TH ttk::button n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_checkbutton.n b/doc/ttk_checkbutton.n
index afdce51..07b3205 100644
--- a/doc/ttk_checkbutton.n
+++ b/doc/ttk_checkbutton.n
@@ -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: ttk_checkbutton.n,v 1.16 2008/12/04 15:47:22 dkf Exp $
-'\"
.so man.macros
.TH ttk::checkbutton n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_combobox.n b/doc/ttk_combobox.n
index 37a5d64..e01c6f6 100644
--- a/doc/ttk_combobox.n
+++ b/doc/ttk_combobox.n
@@ -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: ttk_combobox.n,v 1.19 2008/10/27 13:38:51 dkf Exp $
-'\"
.so man.macros
.TH ttk::combobox n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_entry.n b/doc/ttk_entry.n
index f8cdf2b..b42bd31 100644
--- a/doc/ttk_entry.n
+++ b/doc/ttk_entry.n
@@ -6,9 +6,6 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" SOURCE: entry.n, r1.12
-'\" RCS: @(#) $Id: ttk_entry.n,v 1.15 2008/11/24 09:56:44 dkf Exp $
-'\"
.so man.macros
.TH ttk::entry n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_frame.n b/doc/ttk_frame.n
index 19a5a2c..9dcf2dc 100644
--- a/doc/ttk_frame.n
+++ b/doc/ttk_frame.n
@@ -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: ttk_frame.n,v 1.12 2008/09/23 13:36:56 dkf Exp $
-'\"
.so man.macros
.TH ttk::frame n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_image.n b/doc/ttk_image.n
index 0c05ce2..3d8b13c 100644
--- a/doc/ttk_image.n
+++ b/doc/ttk_image.n
@@ -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: ttk_image.n,v 1.15 2008/09/23 13:36:56 dkf Exp $
-'\"
.so man.macros
.TH ttk_image n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_intro.n b/doc/ttk_intro.n
index 9572a2e..cb0c440 100644
--- a/doc/ttk_intro.n
+++ b/doc/ttk_intro.n
@@ -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: ttk_intro.n,v 1.13 2009/02/16 09:30:26 dkf Exp $
-'\"
.so man.macros
.TH ttk::intro n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_label.n b/doc/ttk_label.n
index 2e4ffb5..66dafeb 100644
--- a/doc/ttk_label.n
+++ b/doc/ttk_label.n
@@ -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: ttk_label.n,v 1.12 2008/09/23 13:36:56 dkf Exp $
-'\"
.so man.macros
.TH ttk::label n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_labelframe.n b/doc/ttk_labelframe.n
index f295e4d..e782f87 100644
--- a/doc/ttk_labelframe.n
+++ b/doc/ttk_labelframe.n
@@ -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: ttk_labelframe.n,v 1.12 2008/09/23 13:36:56 dkf Exp $
-'\"
.so man.macros
.TH ttk::labelframe n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_menubutton.n b/doc/ttk_menubutton.n
index 8e71bd9..99b7c4d 100644
--- a/doc/ttk_menubutton.n
+++ b/doc/ttk_menubutton.n
@@ -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: ttk_menubutton.n,v 1.13 2008/12/04 15:47:22 dkf Exp $
-'\"
.so man.macros
.TH ttk::menubutton n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_notebook.n b/doc/ttk_notebook.n
index b3eda25..d6c33d3 100644
--- a/doc/ttk_notebook.n
+++ b/doc/ttk_notebook.n
@@ -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: ttk_notebook.n,v 1.16 2009/11/01 18:12:44 jenglish Exp $
-'\"
.so man.macros
.TH ttk::notebook n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_panedwindow.n b/doc/ttk_panedwindow.n
index 472761e..d9d771f 100644
--- a/doc/ttk_panedwindow.n
+++ b/doc/ttk_panedwindow.n
@@ -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: ttk_panedwindow.n,v 1.20 2009/11/01 18:12:44 jenglish Exp $
-'\"
.so man.macros
.TH ttk::panedwindow n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_progressbar.n b/doc/ttk_progressbar.n
index bd3208b..9381c61 100644
--- a/doc/ttk_progressbar.n
+++ b/doc/ttk_progressbar.n
@@ -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: ttk_progressbar.n,v 1.13 2008/09/23 13:36:57 dkf Exp $
-'\"
.so man.macros
.TH ttk::progressbar n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_radiobutton.n b/doc/ttk_radiobutton.n
index d757d8e..cbea359 100644
--- a/doc/ttk_radiobutton.n
+++ b/doc/ttk_radiobutton.n
@@ -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: ttk_radiobutton.n,v 1.15 2008/12/04 15:47:22 dkf Exp $
-'\"
.so man.macros
.TH ttk::radiobutton n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_scale.n b/doc/ttk_scale.n
index 549e6de..2fd485b 100644
--- a/doc/ttk_scale.n
+++ b/doc/ttk_scale.n
@@ -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.
.\"
-.\" CVS: @(#) $Id: ttk_scale.n,v 1.3 2008/06/30 22:57:03 dkf Exp $
-.\"
.so man.macros
.TH ttk::scale n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_scrollbar.n b/doc/ttk_scrollbar.n
index ee603d8..ce9eeed 100644
--- a/doc/ttk_scrollbar.n
+++ b/doc/ttk_scrollbar.n
@@ -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.
'\"
-'\" SOURCE: tk/doc/scrollbar.n, r1.4
-'\" RCS: @(#) $Id: ttk_scrollbar.n,v 1.15 2008/09/23 13:36:57 dkf Exp $
-'\"
.so man.macros
.TH ttk::scrollbar n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_separator.n b/doc/ttk_separator.n
index cd8710b..78114bd 100644
--- a/doc/ttk_separator.n
+++ b/doc/ttk_separator.n
@@ -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: ttk_separator.n,v 1.11 2008/09/23 13:36:57 dkf Exp $
-'\"
.so man.macros
.TH ttk::separator n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_sizegrip.n b/doc/ttk_sizegrip.n
index 5131d7f..38de1ed 100644
--- a/doc/ttk_sizegrip.n
+++ b/doc/ttk_sizegrip.n
@@ -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: ttk_sizegrip.n,v 1.18 2008/09/23 13:36:57 dkf Exp $
-'\"
.so man.macros
.TH ttk::sizegrip n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_spinbox.n b/doc/ttk_spinbox.n
index d8a9cfc..a69784b 100644
--- a/doc/ttk_spinbox.n
+++ b/doc/ttk_spinbox.n
@@ -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: ttk_spinbox.n,v 1.2 2008/11/24 09:56:44 dkf Exp $
-'\"
.so man.macros
.TH ttk::spinbox n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_style.n b/doc/ttk_style.n
index 80b7d16..c32b028 100644
--- a/doc/ttk_style.n
+++ b/doc/ttk_style.n
@@ -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: ttk_style.n,v 1.17 2008/09/23 13:36:57 dkf Exp $
-'\"
.so man.macros
.TH ttk::style n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_treeview.n b/doc/ttk_treeview.n
index f1a491e..dd8ef8c 100644
--- a/doc/ttk_treeview.n
+++ b/doc/ttk_treeview.n
@@ -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: ttk_treeview.n,v 1.22 2010/03/28 21:43:25 jenglish Exp $
-'\"
.so man.macros
.TH ttk::treeview n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_vsapi.n b/doc/ttk_vsapi.n
index 21edbd7..7506ec4 100644
--- a/doc/ttk_vsapi.n
+++ b/doc/ttk_vsapi.n
@@ -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: ttk_vsapi.n,v 1.4 2008/09/23 13:36:58 dkf Exp $
-'\"
.so man.macros
.TH ttk_vsapi n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/ttk_widget.n b/doc/ttk_widget.n
index 0bdf2bf..1d116eb 100644
--- a/doc/ttk_widget.n
+++ b/doc/ttk_widget.n
@@ -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: ttk_widget.n,v 1.19 2010/07/03 17:25:51 jenglish Exp $
-'\"
.so man.macros
.TH ttk::widget n 8.5 Tk "Tk Themed Widget"
.BS
diff --git a/doc/winfo.n b/doc/winfo.n
index ebf6faa..4196bce 100644
--- a/doc/winfo.n
+++ b/doc/winfo.n
@@ -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: winfo.n,v 1.14 2008/09/23 13:36:58 dkf Exp $
-'\"
.so man.macros
.TH winfo n 4.3 Tk "Tk Built-In Commands"
.BS
diff --git a/doc/wish.1 b/doc/wish.1
index d36d843..2bae675 100644
--- a/doc/wish.1
+++ b/doc/wish.1
@@ -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: wish.1,v 1.14 2010/01/13 15:17:12 dkf Exp $
-'\"
.so man.macros
.TH wish 1 8.0 Tk "Tk Applications"
.BS
diff --git a/doc/wm.n b/doc/wm.n
index 085ccff..699fb67 100644
--- a/doc/wm.n
+++ b/doc/wm.n
@@ -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: wm.n,v 1.42 2008/11/16 17:07:51 dkf Exp $
-'\"
.so man.macros
.TH wm n 8.5 Tk "Tk Built-In Commands"
.BS
diff --git a/generic/README b/generic/README
index b7c8c12..6ac6bb4 100644
--- a/generic/README
+++ b/generic/README
@@ -1,5 +1,3 @@
This directory contains Tk source files that work on all the platforms
where Tk runs (e.g. UNIX, PCs, and MacOSX). Platform-specific
sources are in the directories ../unix, ../win, and ../macosx.
-
-RCS ID: @(#) $Id: README,v 1.3 2004/03/17 18:15:42 das Exp $
diff --git a/generic/default.h b/generic/default.h
index 1f3a04c..6156f4d 100644
--- a/generic/default.h
+++ b/generic/default.h
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: default.h,v 1.6 2008/11/06 22:19:00 nijtmans Exp $
*/
#ifndef _DEFAULT
diff --git a/generic/ks_names.h b/generic/ks_names.h
index aec53e8..22d9fc5 100644
--- a/generic/ks_names.h
+++ b/generic/ks_names.h
@@ -1,6 +1,5 @@
/*
* This file is generated from $(INCLUDESRC)/keysymdef.h. Do not edit.
- * RCS: $Id: ks_names.h,v 1.5 2006/07/21 07:07:00 das Exp $
*/
{ "BackSpace", 0xFF08 },
{ "Tab", 0xFF09 },
diff --git a/generic/tk.decls b/generic/tk.decls
index f33200a..f37be47 100644
--- a/generic/tk.decls
+++ b/generic/tk.decls
@@ -10,8 +10,6 @@
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-#
-# RCS: @(#) $Id: tk.decls,v 1.55 2010/09/28 10:42:05 nijtmans Exp $
library tk
diff --git a/generic/tk.h b/generic/tk.h
index cb77f86..f401e12 100644
--- a/generic/tk.h
+++ b/generic/tk.h
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tk.h,v 1.138 2010/12/16 09:03:07 nijtmans Exp $
*/
#ifndef _TK
diff --git a/generic/tk3d.c b/generic/tk3d.c
index 47c45c4..2920c76 100644
--- a/generic/tk3d.c
+++ b/generic/tk3d.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tk3d.c,v 1.26 2009/11/21 17:24:42 dkf Exp $
*/
#include "tkInt.h"
diff --git a/generic/tk3d.h b/generic/tk3d.h
index cce78bf..891e927 100644
--- a/generic/tk3d.h
+++ b/generic/tk3d.h
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tk3d.h,v 1.10 2010/04/23 08:32:56 nijtmans Exp $
*/
#ifndef _TK3D
diff --git a/generic/tkArgv.c b/generic/tkArgv.c
index a69e3e3..3f235ad 100644
--- a/generic/tkArgv.c
+++ b/generic/tkArgv.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkArgv.c,v 1.18 2010/02/16 21:12:56 nijtmans Exp $
*/
#include "tkInt.h"
diff --git a/generic/tkAtom.c b/generic/tkAtom.c
index 43995e6..2491fb2 100644
--- a/generic/tkAtom.c
+++ b/generic/tkAtom.c
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkAtom.c,v 1.13 2010/11/29 09:07:13 nijtmans Exp $
*/
#include "tkInt.h"
diff --git a/generic/tkBind.c b/generic/tkBind.c
index e77667f..53a2046 100644
--- a/generic/tkBind.c
+++ b/generic/tkBind.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkBind.c,v 1.68 2010/06/21 12:14:08 nijtmans Exp $
*/
#include "tkInt.h"
diff --git a/generic/tkBitmap.c b/generic/tkBitmap.c
index bdf160f..b641cb5 100644
--- a/generic/tkBitmap.c
+++ b/generic/tkBitmap.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkBitmap.c,v 1.28 2010/01/02 22:52:38 dkf Exp $
*/
#include "tkInt.h"
diff --git a/generic/tkBusy.c b/generic/tkBusy.c
index 3a683e3..fc7f6ab 100644
--- a/generic/tkBusy.c
+++ b/generic/tkBusy.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tkBusy.c,v 1.9 2010/02/13 13:47:49 nijtmans Exp $
*/
#include "tkInt.h"
diff --git a/generic/tkBusy.h b/generic/tkBusy.h