summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Rf.c
blob: 88aa158295df47c25879f218df0dee6da492822d (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/****h* H5Rf/H5Rf
 * PURPOSE
 *  This file contains C stubs for H5R Fortran APIs
 *
 * COPYRIGHT
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://www.hdfgroup.org/licenses.               *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 ******
 */

#include "H5f90.h"
#include "H5Eprivate.h"

/****if* H5Rf/h5rcreate_region_c
 * NAME
 *  h5rcreate_region_c
 * PURPOSE
 *  Call H5Rcreate to create a reference to dataset region
 *  region
 * INPUTS
 *  loc_id - file or group identifier
 *  name - name of the dataset
 *  namelen - name length
 *  space_id - dataset space identifier
 * OUTPUTS
 *  ref  - reference to the dataset region
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  Elena Pourmal
 *  Wednesday, December 1, 1999
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rcreate_region_c(int_f *ref, hid_t_f *loc_id, _fcd name, int_f *namelen, hid_t_f *space_id)
/******/
{
    char *          c_name = NULL;
    hdset_reg_ref_t ref_c;
    int_f           ret_value = 0;

    /*
     * Convert FORTRAN name to C name
     */
    if (NULL == (c_name = (char *)HD5f2cstring(name, (size_t)*namelen)))
        HGOTO_DONE(FAIL)

    /*
     * Call H5Rcreate function.
     */
    if (H5Rcreate(&ref_c, (hid_t)*loc_id, c_name, H5R_DATASET_REGION, (hid_t)*space_id) < 0)
        HGOTO_DONE(FAIL)

    /* Copy the reference created */
    HDmemcpy(ref, &ref_c, H5R_DSET_REG_REF_BUF_SIZE);

done:
    if (c_name)
        HDfree(c_name);
    return ret_value;
} /* end h5rcreate_region_c() */

/****if* H5Rf/h5rcreate_ptr_c
 * NAME
 *  h5rcreate_ptr_c
 * PURPOSE
 *  Call H5Rcreate to create a reference to dataset region
 * INPUTS
 *  loc_id    - file or group identifier
 *  name      - name of the dataset
 *  namelen   - name length
 *  space_id  - dataset space identifier
 * OUTPUTS
 *  ref       - reference to the dataset region
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  M. Scot Breitenfeld
 *  June 20, 2008
 *
 * SOURCE
 */
int_f
h5rcreate_ptr_c(void *ref, hid_t_f *loc_id, _fcd name, int_f *namelen, int_f *ref_type, hid_t_f *space_id)
/******/
{
    int   ret_value = -1;
    char *c_name;

    /*
     * Convert FORTRAN name to C name
     */
    c_name = (char *)HD5f2cstring(name, (size_t)*namelen);
    if (c_name == NULL)
        return ret_value;

    /*
     * Call H5Rcreate function.
     */
    if (H5Rcreate(ref, (hid_t)*loc_id, c_name, (H5R_type_t)*ref_type, (hid_t)*space_id) >= 0)
        ret_value = 0;

    HDfree(c_name);
    return ret_value;
}

/****if* H5Rf/h5rdereference_ptr_c
 * NAME
 *  h5rdereference_ptr_c
 * PURPOSE
 *  Call H5Rdereference
 * INPUTS
 *  obj_id  - Valid identifier for the file containing the
 *  referenced object or any object in that file.
 *  ref_typ - The reference type of ref.
 *  ref     - Object reference
 * OUTPUTS
 *  ref_obj_id - Identifier of referenced object
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  M. Scot Breitenfeld
 *  June 20, 2008
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rdereference_ptr_c(hid_t_f *obj_id, int_f *ref_type, void *ref, hid_t_f *ref_obj_id)
/******/
{
    int   ret_value = -1;
    hid_t c_ref_obj_id;

    /*
     * Call H5Rdereference function.
     */
    c_ref_obj_id = H5Rdereference2((hid_t)*obj_id, H5P_DEFAULT, (H5R_type_t)*ref_type, ref);
    if (c_ref_obj_id < 0)
        return ret_value;
    *ref_obj_id = (hid_t_f)c_ref_obj_id;
    ret_value   = 0;
    return ret_value;
}

/****if* H5Rf/h5rget_region_region_object_c
 * NAME
 *  h5rget_region_region_object_c
 * PURPOSE
 *  Call H5Rget_region to dereference dataspace region
 * INPUTS
 *  dset_id - dataset identifier
 *  ref - reference to the dataset region
 * OUTPUTS
 *  space_id - dereferenced  dataset dataspace identifier
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  Elena Pourmal
 *  Wednesday, December 1, 1999
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rget_region_region_c(hid_t_f *dset_id, int_f *ref, hid_t_f *space_id)
/******/
{
    hid_t           c_space_id;
    hdset_reg_ref_t ref_c;
    int_f           ret_value = 0;

    /* Copy the reference to dereference */
    HDmemcpy(&ref_c, ref, H5R_DSET_REG_REF_BUF_SIZE);

    /*
     * Call H5Rget_region function.
     */
    if ((c_space_id = H5Rget_region((hid_t)*dset_id, H5R_DATASET_REGION, &ref_c)) < 0)
        HGOTO_DONE(FAIL)

    /* Copy the dataspace ID */
    *space_id = (hid_t_f)c_space_id;

done:
    return ret_value;
} /* end h5rget_region_region_c() */

/****if* H5Rf/h5rget_region_ptr_c
 * NAME
 *  h5rget_region_ptr_c
 * PURPOSE
 *  Call H5Rget_region to dereference dataspace region
 * INPUTS
 *  dset_id - dataset identifier
 *  ref - reference to the dataset region
 * OUTPUTS
 *  space_id - dereferenced  dataset dataspace identifier
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  M. Scot Breitenfeld
 *  August 4, 2012
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rget_region_ptr_c(hid_t_f *dset_id, void *ref, hid_t_f *space_id)
/******/
{
    hid_t c_space_id;
    int_f ret_value = 0;

    /*
     * Call H5Rget_region function.
     */
    if ((c_space_id = H5Rget_region((hid_t)*dset_id, H5R_DATASET_REGION, ref)) < 0)
        HGOTO_DONE(FAIL)

    /* Copy the dataspace ID */
    *space_id = (hid_t_f)c_space_id;

done:
    return ret_value;
} /* end h5rget_region_ptr_c() */

/****if* H5Rf/h5rget_object_type_obj_c
 * NAME
 *  h5rget_object_type_obj_c
 * PURPOSE
 *  Call H5Rget_object_type to retrieve the type of the object reference points
 *  to
 * INPUTS
 *  dset_id - dataset identifier
 *  ref - reference to the dataset region
 * OUTPUTS
 *  obj_type - type of dereferenced object
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  Elena Pourmal
 *  Wednesday, December 1, 1999
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rget_object_type_obj_c(hid_t_f *dset_id, haddr_t_f *ref, int_f *obj_type)
/******/
{
    H5O_type_t c_obj_type;
    hobj_ref_t ref_c     = (hobj_ref_t)*ref;
    int_f      ret_value = 0;

    /*
     * Call H5Rget_object_type function.
     */
    if (H5Rget_obj_type2((hid_t)*dset_id, H5R_OBJECT, &ref_c, &c_obj_type) < 0)
        HGOTO_DONE(FAIL)

    /* Copy the object type */
    *obj_type = (int_f)c_obj_type;

done:
    return ret_value;
} /* end h5rget_object_type_obj_c() */

/****if* H5Rf/h5rget_name_ptr_c
 * NAME
 *  h5rget_name_ptr_c
 * PURPOSE
 *  Call H5Rget_name
 * INPUTS
 *
 *  loc_id - Identifier for the dataset containing the reference or for the group that dataset is in.
 *  ref_type - Type of reference.
 *  ref - An object or dataset region reference.
 *
 * OUTPUTS
 *  name - A name associated with the referenced object or dataset region.
 *  size - The size of the name buffer.
 *
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  M. Scot Breitenfeld
 *  June 20, 2008
 * HISTORY
 *
 * SOURCE
 */
int_f
h5rget_name_ptr_c(hid_t_f *loc_id, int_f *ref_type, void *ref, _fcd name, size_t_f *name_len,
                  size_t_f *size_default)
/******/
{
    int_f   ret_value = -1;
    ssize_t c_size;
    size_t  c_bufsize;
    char *  c_buf = NULL; /* Buffer to hold C string */

    c_bufsize = (size_t)*name_len + 1;
    /*
     * Allocate buffer to hold name of an attribute
     */
    if ((c_buf = (char *)HDmalloc(c_bufsize)) == NULL)
        return ret_value;

    /*
     * Call H5Rget_name function.
     */
    if ((c_size = H5Rget_name((hid_t)*loc_id, (H5R_type_t)*ref_type, ref, c_buf, c_bufsize)) < 0) {
        if (c_buf)
            HDfree(c_buf);
        return ret_value;
    }
    /*
     * Convert C name to FORTRAN and place it in the given buffer
     */
    HD5packFstring(c_buf, _fcdtocp(name), c_bufsize - 1);

    *size_default = (size_t_f)c_size;
    ret_value     = 0;
    if (c_buf)
        HDfree(c_buf);

    return ret_value;
}

/****if* H5Rf/h5rget_obj_type_c
 * NAME
 *  h5rget_obj_type_c
 * PURPOSE
 *  Call H5Rget_obj_type
 * INPUTS
 *  loc_id   - Identifier for the dataset containing the reference or
 *  for the group that dataset is in.
 *  ref_type - Type of reference to query.
 *  ref      - Reference to query.
 *
 * OUTPUTS
 *  obj_type - Type of referenced object. These are defined in H5Opublic.h,
 *  enum H5O_type_t
 *
 * RETURNS
 *  0 on success, -1 on failure
 * AUTHOR
 *  M. Scot Breitenfeld
 *  December 17, 2008
 *
 * SOURCE
 */
int_f
h5rget_obj_type_c(hid_t_f *loc_id, int_f *ref_type, void *ref, int_f *obj_type)
/******/
{
    int_f      ret_value = -1;
    H5O_type_t obj_type_c;

    /*
     * Call H5Rget_obj_type function.
     */
    if ((H5Rget_obj_type2((hid_t)*loc_id, (H5R_type_t)*ref_type, ref, &obj_type_c)) < 0)
        return ret_value;

    *obj_type = (int_f)obj_type_c;

    ret_value = 0;
    return ret_value;
}
nd for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: InternAtom.3,v 1.3 2002/08/05 04:30:38 dgp Exp $ -'\" .so man.macros .TH Tk_InternAtom 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/MainLoop.3 b/doc/MainLoop.3 index de6dbe5..8653c17 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.2 1998/09/14 18:22:52 stanton Exp $ -'\" .so man.macros .TH Tk_MainLoop 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/MainWin.3 b/doc/MainWin.3 index b878cb0..14acec7 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.3 2000/04/25 01:42:18 ericm 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 4f59c0e..d34e22e 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.3 2000/10/05 00:50:00 ericm 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 b5b348d..0ceff3a 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.2 1998/09/14 18:22:52 stanton 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 a1ddce0..bf54dea 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.4 1999/04/21 21:53:22 rjohnson Exp $ -'\" .so man.macros .TH Tk_MapWindow 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/MeasureChar.3 b/doc/MeasureChar.3 index 3eac03e..059d8e8 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.4 1999/12/21 23:54:17 hobbs 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 f87cf51..88accaf 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.2 1998/09/14 18:22:52 stanton Exp $ -'\" .so man.macros .TH Tk_MoveToplevelWindow 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/Name.3 b/doc/Name.3 index 6f10d97..4497ea6 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.3 2002/01/25 21:09:36 dgp Exp $ -'\" .so man.macros .TH Tk_Name 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/NameOfImg.3 b/doc/NameOfImg.3 index 6de79f2..3e05a14 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.3 2002/08/05 04:30:38 dgp 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 0cd541c..cf2559d 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.2 1998/09/14 18:22:53 stanton 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 10152c1..07c7551 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.3 2002/01/25 21:09:36 dgp Exp $ -'\" .so man.macros .TH Tk_ParseArgv 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/QWinEvent.3 b/doc/QWinEvent.3 index 15492dc..8bd3099 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.3 2002/06/15 00:21:42 hobbs 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 6f8024e..a9a6c3a 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.2 1998/09/14 18:22:53 stanton Exp $ -'\" .so man.macros .TH Tk_RestackWindow 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/RestrictEv.3 b/doc/RestrictEv.3 index 5af42a5..b1cc9b8 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.2 1998/09/14 18:22:53 stanton Exp $ -'\" .so man.macros .TH Tk_RestrictEvents 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/SetAppName.3 b/doc/SetAppName.3 index 17264a9..ef9b331 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.3 2002/08/05 04:30:38 dgp 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 b5bd901..210cb21 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.1 2002/06/17 20:09:01 hobbs 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 68a21a1..a457777 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.2 1998/09/14 18:22:53 stanton Exp $ -'\" .so man.macros .TH Tk_SetClass 3 "" Tk "Tk Library Procedures" .BS diff --git a/doc/SetClassProcs.3 b/doc/SetClassProcs.3 index 27c1438..1ab9a6c 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.1 2000/11/22 01:50:26 ericm 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 965864c..c304ba2 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.2 1998/09/14 18:22:53 stanton 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 7abc944..f0d5fba 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.8 2000/10/01 21:31:35 ericm 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 c95145a..f5c5890 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.2 1998/09/14 18:22:53 stanton 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 ab80c33..d44991d 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.2 1998/09/14 18:22:54 stanton 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 0762089..d6fa032 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.5 1999/04/21 21:53:22 rjohnson 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 168c5a6..421ed10 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.2 2001/05/22 00:22:41 hobbs 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 6a3f0bc..b217aff 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.4 2000/09/07 17:38:16 hobbs 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 aebf8db..c247211 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.2 1998/09/14 18:22:54 stanton 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 8f930c8..e588c8e 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.7 2002/08/05 04:30:38 dgp 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 23d81ec..c9861bf 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.4 2000/09/07 17:38:16 hobbs 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 cb101a4..d5bdf2c 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.7.2.2 2004/10/28 10:19:29 dkf 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 ec69f31..8c6557a 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.2.26.1 2004/10/28 10:19:29 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 3eb29e6..0dde8d5 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.2 1998/09/14 18:22:54 stanton Exp $ -'\" .so man.macros .TH bitmap n 4.0 Tk "Tk Built-In Commands" .BS diff --git a/doc/button.n b/doc/button.n index 237d888..3ca4c4d 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.6.8.1 2004/10/28 10:19:29 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 f99ace7..6a308a0 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.13.2.4 2007/11/05 17:21:58 dgp 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 86e91ff..f236de2 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.6.2.1 2004/10/28 10:19:29 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 afff881..8bb8d83 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.3 2002/10/02 21:12:41 hobbs 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 c531739..c796f86 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.1.10.1 2004/10/28 10:19:29 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 340fb8b..9fa858a 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.5.2.1 2004/10/28 10:19:29 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 6a66976..604ac52 100644 --- a/doc/colors.n +++ b/doc/colors.n @@ -3,8 +3,6 @@ '\" Copyright (c) 2003 ActiveState Corporation. '\" Copyright (c) 2006-2007 Daniel A. Steffen '\" -'\" RCS: @(#) $Id: colors.n,v 1.4.2.1 2007/04/29 02:25:54 das Exp $ -'\" '\" .so man.macros .TH colors n 8.3 Tk "Tk Built-In Commands" diff --git a/doc/console.n b/doc/console.n index e37a6e0..c6ea1d1 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.4.4.1 2004/10/28 10:19:29 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 a1d82b1..06a0208 100644 --- a/doc/cursors.n +++ b/doc/cursors.n @@ -4,9 +4,6 @@ '\" '\" Copyright (c) 2006-2007 Daniel A. Steffen '\" -'\" RCS: @(#) $Id: cursors.n,v 1.3.2.1 2007/04/29 02:25:54 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 6240068..65b0caa 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.2.26.1 2004/10/28 10:19:29 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 12f2e7c..1f91b3f 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.2.26.1 2004/10/28 10:19:29 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 10eb70d..5a34b47 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.11.2.1 2004/10/28 10:19:29 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 ae3a1ad..49e04d3 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.6.8.1 2004/10/28 10:19:29 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 b7107bb..d37697a 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.2.26.1 2004/10/28 10:19:29 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 fb326b3..1279f20 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.2 1998/09/14 18:22:56 stanton 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 0a8a4ad..07b7164 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.3.8.3 2007/11/05 17:21:58 dgp Exp $ -'\" .so man.macros .TH font n 8.0 Tk "Tk Built-In Commands" .BS diff --git a/doc/frame.n b/doc/frame.n index cb00955..ac03de9 100644 --- a/doc/frame.n +++ b/doc/frame.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. '\" -'\" -'\" RCS: @(#) $Id: frame.n,v 1.4 2001/09/26 21:36:19 pspjuth 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 feec9ac..b13194b 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.10.2.2 2005/07/06 22:15:15 hobbs 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 e3ea0e6..c954fab 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.2.26.1 2004/10/28 10:19:29 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 b309afc..fa22eeb 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.5.4.3 2004/10/29 07:52:08 dkf Exp $ -'\" .so man.macros .TH grid n 8.4 Tk "Tk Built-In Commands" .BS diff --git a/doc/image.n b/doc/image.n index afad619..a93ffc1 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.6.4.1 2004/10/28 10:19:29 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 e79a2ee..bab9d16 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.3.8.1 2004/10/28 10:19:29 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 847d363..1aa5ee1 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.6.2.1 2004/10/28 10:19:29 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 7a5c6ec..2654fe8 100644 --- a/doc/labelframe.n +++ b/doc/labelframe.n @@ -4,10 +4,7 @@ '\" '\" 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.1 2001/09/26 21:36:19 pspjuth 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 e134414..e287b09 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.9.2.1 2004/10/28 10:19:29 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 465947c..6c6a830 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.5.2.2 2005/01/05 21:57:17 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 ca08b92..be8ca4e 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.2 1998/09/14 18:22:57 stanton 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 b8c0726..f801ead 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.8.2.2 2007/11/05 17:21:59 dgp 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 7edcd37..34fd2e7 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.2.26.1 2004/10/28 10:19:29 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 98eb0e7..22b1df6 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.4.4.1 2004/10/28 10:19:29 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 135375c..94f93fe 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.3.8.1 2004/10/28 10:19:29 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 140b166..0079972 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.5.8.1 2004/10/28 10:19:29 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 9f6d48e..e731713 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.2.26.1 2004/10/28 12:25:22 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 17a2727..3ffa1cb 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.2 1998/09/14 18:22:58 stanton 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 c7e9ef3..2710300 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.6.8.1 2004/10/28 10:19:29 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 54289f2..66bdc18 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.2.26.1 2004/11/19 09:48:02 rmax 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 c6c3588..33c8203 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.3.6.1 2004/10/28 12:25:22 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 3d77282..76c01c7 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.2 1998/09/14 18:22:58 stanton 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 d2ed3b6..621767c 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.2.2.3 2004/12/20 10:03:17 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 17f6f47..7f03fe7 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.14.2.5 2007/06/05 12:58:18 dkf 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 028654d..017313f 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.3.8.1 2004/10/28 12:25:22 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 2fb37d9..7b7d69f 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.2.26.1 2004/10/28 12:25:22 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 d18a5c1..ae9a857 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.6.2.1 2004/10/28 10:19:29 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 1a14049..643ec36 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.2.26.1 2004/10/28 12:25:22 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 e0077e5..5b1b3b1 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.3.8.1 2004/10/28 12:25:22 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 6acc7e4..7f4801a 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.3.8.1 2004/10/28 12:25:22 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 c4847e7..dcf12b2 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.4.4.1 2004/10/28 12:25:22 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 979d9de..59d832b 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.3.20.1 2004/10/28 12:25:22 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 5876879..700f001 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.3.2.1 2004/10/28 12:25:22 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 13fc2de..ac61d41 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.15.2.5 2006/04/12 02:20:47 das Exp $ -'\" .so man.macros .TH text n 8.4 Tk "Tk Built-In Commands" .BS diff --git a/doc/tk.n b/doc/tk.n index 072b60e..6e807e6 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.7.2.1 2007/11/05 17:21:59 dgp 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 61b8350..b75dcfe 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.2 1998/09/14 18:23:00 stanton 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 4c6451d..da7410e 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.3 2001/08/01 16:21:11 dgp 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 b3282c2..32bfb44 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.2 1998/09/14 18:23:00 stanton Exp $ -'\" .so man.macros .TH tkwait n "" Tk "Tk Built-In Commands" .BS diff --git a/doc/toplevel.n b/doc/toplevel.n index 38b197a..c1f0081 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.4.4.2 2005/01/05 21:57:17 dkf Exp $ -'\" .so man.macros .TH toplevel n 8.4 Tk "Tk Built-In Commands" .BS diff --git a/doc/winfo.n b/doc/winfo.n index 0a1b06d..fe62071 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.3.2.1 2004/10/28 12:25:22 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 0f06894..20d54e2 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.3 2003/02/13 22:09:12 kennykb Exp $ -'\" .so man.macros .TH wish 1 8.0 Tk "Tk Applications" .BS diff --git a/doc/wm.n b/doc/wm.n index 361fc26..f234b6d 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.11.2.6 2007/04/29 02:25:54 das Exp $ -'\" .so man.macros .TH wm n 8.4 Tk "Tk Built-In Commands" .BS diff --git a/generic/README b/generic/README index ff69a74..285127c 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 Macintoshes). Platform-specific sources are in the directories ../unix, ../win, ../macosx, and ../mac. - -RCS ID: @(#) $Id: README,v 1.2.26.1 2005/12/02 21:13:39 dgp Exp $ diff --git a/generic/default.h b/generic/default.h index 2ec68a3..0f67ebf 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.4 2002/08/31 06:12:19 das Exp $ */ #ifndef _DEFAULT diff --git a/generic/ks_names.h b/generic/ks_names.h index 78d4cfc..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.4.10.1 2006/07/21 07:07:00 das Exp $ */ { "BackSpace", 0xFF08 }, { "Tab", 0xFF09 }, diff --git a/generic/prolog.ps b/generic/prolog.ps index 2971a8a..4076282 100644 --- a/generic/prolog.ps +++ b/generic/prolog.ps @@ -3,7 +3,6 @@ % This is a standard prolog for Postscript generated by Tk's canvas % widget. -% RCS: @(#) $Id: prolog.ps,v 1.2 1999/04/16 01:51:09 stanton Exp $ % The definitions below just define all of the variables used in % any of the procedures here. This is needed for obscure reasons diff --git a/generic/tk.decls b/generic/tk.decls index 7d3f5f6..2424ee0 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.24.2.1 2006/02/09 19:09:43 das Exp $ library tk diff --git a/generic/tk.h b/generic/tk.h index d03ce55..f03992f 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.74.2.24 2009/04/09 15:57:52 dgp Exp $ */ #ifndef _TK diff --git a/generic/tk3d.c b/generic/tk3d.c index 3c6492e..4d9d163 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.13 2002/08/05 04:30:38 dgp Exp $ */ #include "tk3d.h" diff --git a/generic/tk3d.h b/generic/tk3d.h index 03ce97e..2905ff5 100644 --- a/generic/tk3d.h +++ b/generic/tk3d.h @@ -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: tk3d.h,v 1.5 1999/04/16 01:51:10 stanton Exp $ */ #ifndef _TK3D diff --git a/generic/tkArgv.c b/generic/tkArgv.c index a0c8143..4821f41 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.4 2002/01/25 21:09:36 dgp Exp $ */ #include "tkPort.h" diff --git a/generic/tkAtom.c b/generic/tkAtom.c index 0137d40..f94af81 100644 --- a/generic/tkAtom.c +++ b/generic/tkAtom.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: tkAtom.c,v