==============
2001/12/20 19:26:13
author: dannybackx
lib/Xm-2.0/Container.c(1.53)

Get expand/collapse logic in better shape. Previously some of the icon
	buttons wouldn't be removed when collapsing.
==============
2001/12/22 11:07:26
author: dannybackx
lib/Xm-2.0/Container.c(1.54)
lib/Xm-2.0/IconG.c(1.25)

Hook up XmContainer to the XmIconGadget trait so it indicates selection.
Change the two trait methods in IconGadget, they were mixed up.
Do note that IconGadget doesn't yet honour the visualEmphasis so it
doesn't show that it's selected yet. But it knows ;-)
==============
2001/12/22 16:43:04
author: dannybackx
include/Motif-2.0/Xm/IconGP.h(1.8)
lib/Xm-2.0/Container.c(1.55)
lib/Xm-2.0/IconG.c(1.26)

These changes make the IconGadgets use the XmContainer's SelectedColor
	when they're selected.
	meditres -xrm "*selectColor: yellow" shows this.
==============
2001/12/23 13:02:49
author: dannybackx
include/Motif-2.0/Xm/ContainerP.h(1.14)
lib/Xm-2.0/Container.c(1.56)
lib/Xm-2.0/IconG.c(1.27)

Initialize some more in ContainerInitialize.
Still can't find why I cannot get a tree more than once in meditres.
==============
2001/12/23 15:40:25
author: dannybackx
lib/Xm-2.0/Container.c(1.57)

Fix the mixup between ConstraintDestroy() and Destroy().
==============
2001/12/23 17:13:32
author: dannybackx
lib/Xm-2.0/Container.c(1.58)

Implement one of the XmContainer API's for use in meditres.
==============
2001/12/23 20:07:47
author: dannybackx
lib/Xm-2.0/Container.c(1.59)

Getting a bit further in removing children and still having valid
	memory structures afterwards.
==============
2001/12/24 11:58:57
author: dannybackx
lib/Xm-2.0/Container.c(1.60)

More fixes to the internal tree handling. Now meditres can refresh,
	meaning we can completely clean up the internal tree
	structure and rebuild a new one without crashing.
==============
2001/12/24 13:02:18
author: dannybackx
lib/Xm-2.0/Container.c(1.61)

Get a redraw to clean up graphics after removing a child.
==============
2001/12/24 14:55:20
author: dannybackx
lib/Xm-2.0/IconG.c(1.28)

Try to draw a rectangle around IconGadget when it has visualEmphasis.
Not right yet.
==============
2001/12/26 07:00:40
author: dannybackx
include/Motif-2.0/Xm/IconGP.h(1.9)

Oops, a forgotten update.
==============
2001/12/26 08:30:47
author: dannybackx
lib/Xm-2.0/Container.c(1.62)
lib/Xm-2.0/IconG.c(1.29)

Dead code removal in IconG.c .
Another !being_destroyed check seems to be needed in Container.c;
	xplore does such wonderful things (deleting widgets) when
	we're trying to select a widget.
==============
2001/12/26 09:42:05
author: dannybackx
lib/Xm-2.0/IconG.c(1.30)

Draw a simple rectangle around IconGadgets when they're selected.
	Note that some may find that Motif does this more interestingly
	(it's not a rectangle in Motif).
==============
2001/12/27 14:42:03
author: dannybackx
lib/Xm/Manager.c(1.105)
lib/Xm/Primitive.c(1.48)
lib/Xm-2.0/IconG.c(1.31)

Add some of the ground work for the CareParentVisual trait.
XmManager is supposed to call this to signal its children that they may
	want to redraw themselves because of a visual change that affects
	them. I suppose this needs to be called from SetValues().
According to the docs, not only IconGadget but also XmPrimitive implements
	this. Hence all XmPrimitive subclasses inherit the behaviour.
==============
2001/12/27 16:11:46
author: dannybackx
lib/Xm/Manager.c(1.106)

Call the CareParentVisual trait from within SetValues.
==============
2001/12/27 16:22:33
author: dannybackx
lib/Xm/Primitive.c(1.49)
lib/Xm-2.0/IconG.c(1.32)

Trivial source changes.
Document recent work in CURRENT_NOTES.
==============
2001/12/28 07:47:01
author: dannybackx
lib/Xm-2.0/Container.c(1.63)

Try to fix a problem reported by Alexander - clicking an item in the right
panel in Xplore causes a crash.
==============
2001/12/29 15:11:38
author: dannybackx
lib/Xm/Primitive.c(1.50)
lib/Xm-2.0/Container.c(1.64)
lib/Xm-2.0/IconG.c(1.33)

Primitive, IconG : attempt to implement some of the CareParentVisual trait.
Container : fix a bug that crashed Xplore. (I found how to reproduce which
	makes debugging somewhat easier.)
==============
2001/12/29 16:56:58
author: dannybackx
include/Motif-2.0/Xm/ContainerP.h(1.15)
lib/Xm-2.0/Container.c(1.65)

Begin work on XmSPATIAL layout in XmContainer.
==============
2001/12/29 17:12:11
author: dannybackx
lib/Xm-2.0/Container.c(1.66)

Figure out cell size.
==============
2001/12/31 13:52:14
author: dannybackx
include/Include.Xm(1.8)
include/Motif-1.2/Xm/ManagerP.h(1.5)
include/Motif-2.0/Xm/ContainerP.h(1.16)
lib/Xm-2.0/Container.c(1.67)

More work on SPATIAL layout in Container.
Remove the 2.0 include file for ManagerP.h, there's no need for it as all
this is better in the 1.2 version, certainly for include files.
==============
2001/12/31 15:46:49
author: dannybackx
lib/Xm-2.0/Container.c(1.68)

More work on layout in XmSPATIAL. Xplore is beginning to work with it.
==============
2001/12/31 16:03:45
author: dannybackx
lib/Xm-2.0/Container.c(1.69)

XmContainer's XmSPATIAL layout now works for Xplore 1.1.
This fix kills a small :-( logic error which reversed rows and columns. Sigh.
==============
2002/01/04 16:30:21
author: amai
lib/Xm/SelectionBox.c(1.57)

Fix for
SF Bug [ #498213 ] Crash in NEdit/SelectionBox
We forgot to copy SB_SelectionLabelString() in initialize()
==============
2002/01/05 16:51:33
author: dannybackx
lib/Xm-2.0/Container.c(1.70)

Fix small problem in EntryParentClear (it is almost always called when
the widget is being destroyed, so the check for that was evil),
which caused meditres to redraw incorrectly after a refresh.
==============
2002/01/05 16:53:14
author: dannybackx
lib/Xm/SelectionBox.c(1.58)

Include this year in the copyright message.
==============
2002/01/06 15:50:39
author: dannybackx
lib/Xm-2.0/Container.c(1.71)

Core dump avoidance in xplore. Something still isn't right in
EntryParentClear() w.r.t. ch->core.being_destroyed.
==============
2002/01/07 19:38:29
author: dannybackx
lib/Xm-2.0/Container.c(1.72)

Also allow extended selection in the opposite direction.
(Select widget 5 first, then shift-select widget 3.)
==============
2002/01/07 19:51:34
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.42)
include/Motif-2.1/Xm/Xm.h.in(1.22)
lib/Xm/XmString.c(1.73)
lib/Xm-2.0/RenderTable.c(1.16)
lib/Xm-2.0/XmTabList.c(1.7)

Try to build the type definitions for XmFontList* (2.x style) and
	XmRenderTable and XmRendition.
==============
2002/01/07 20:01:14
author: dannybackx
include/Motif-2.1/Xm/Xm.h.in(1.23)

Hmm, this at least gets the compile going again.
==============
2002/01/08 17:25:30
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.43)

This should fix the 1.2 build
==============
2002/01/09 19:22:31
author: dannybackx
include/Motif-1.2/Xm/Xm.h.in(1.21)
include/Motif-1.2/XmI/XmI.h(1.44)
include/Motif-2.1/Xm/Xm.h.in(1.24)
lib/Xm/FontList.c(1.26)
lib/Xm/ResConvert.c(1.80)
lib/Xm/TextF.c(1.121)
lib/Xm/TextOut.c(1.104)
lib/Xm/XmIm.c(1.31)
lib/Xm/XmString.c(1.74)

Change the memory allocation of XmFontList and XmFontListEntry.
Our implementation treated them as (almost) the same, they've now
been converted into something that looks like XmRenderTable and
XmRendition.
This is also true for the 1.2 version of LessTif, even though that doesn't
offer the XmRend* API's. We can do this because the structure of
XmFontList and XmFontListEntry is internal to LessTif so this is
really none of your business.
==============
2002/01/09 19:30:41
author: dannybackx
lib/Xm/FontList.c(1.27)
lib/Xm/TextF.c(1.122)
lib/Xm/XmIm.c(1.32)

Bugfixes triggered by the 1.2 build and by -Wall compilation.
==============
2002/01/09 21:32:34
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.45)
lib/Xm/FontList.c(1.28)
lib/Xm/TextOut.c(1.105)

Nedit didn't work due to a memory allocation error; this fixes this.
==============
2002/01/10 10:17:31
author: amai
lib/Xm/SelectionBox.c(1.59)

Try to fix yet another memory problem with SB*Strings.
Now efence is really happy.
==============
2002/01/10 19:58:26
author: dannybackx
lib/Xm/FontList.c(1.29)

Small bug which bit Xbae (oleo).
==============
2002/01/11 20:21:11
author: amai
lib/Xm/SelectionBox.c(1.60)

Recently introduced a wrong check for supplied strings (NULL vs.
XmUNSPECIFIED/default). I think getting NULL is a bug and so let
things crash ...
==============
2002/01/11 22:49:14
author: dannybackx
include/Motif-2.1/Xm/Xm.h.in(1.25)
lib/Xm/FontList.c(1.30)
lib/Xm-2.0/RenderTable.c(1.17)
lib/Xm-2.0/XmTabList.c(1.8)

Get a memory leak out of the FontList implementation, and
do some initial stuff on renditions etc.
==============
2002/01/12 15:54:58
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.46)
include/Motif-2.1/Xm/Xm.h.in(1.26)
lib/Xm/XmString.c(1.75)
lib/Xm-2.0/RenderTable.c(1.18)

Add some more of the basic functions for XmRender*.
==============
2002/01/15 21:01:41
author: amai
clients/Motif-1.2/mwm/mwm.h(1.28)
clients/Motif-1.2/mwm/mwmparse.y(1.35)

Small cleanup to configfile reading stuff.
I think I'm going to have a closer look this/next week...
==============
2002/01/15 23:11:07
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.47)

Add some more definitions, also try to get compile working again for 1.2.
==============
2002/01/16 00:02:28
author: amai
clients/Motif-1.2/mwm/mwmparse.y(1.36)

Fix bug in find_config_file() from a recent commit.
Move some OS/2 stuff around ...
==============
2002/01/16 00:48:04
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.48)
lib/Xm/FontList.c(1.31)
lib/Xm/XmString.c(1.76)
lib/Xm-2.0/RenderTable.c(1.19)

Make XmFontListEntry and XmRendition shared and therefore reference-counted
objects, as described in http://www.motifdeveloper.com/tips/tip2.html .
==============
2002/01/16 00:55:18
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.49)
lib/Xm/FontList.c(1.32)

Try to get it to compile again in 1.2.
==============
2002/01/16 19:53:26
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.50)
lib/Xm-2.0/XmTabList.c(1.9)

Get some initial XmTabList code for test/Xm-2.0/rendition/test1.c to work.
==============
2002/01/16 20:36:18
author: dannybackx
lib/Xm/FontList.c(1.33)

Print the XmFontListEntryFree info better from _LtDebug.
==============
2002/01/17 15:37:07
author: amai
lib/Xm/FontList.c(1.34)

Drop some XtFree() call -
Danny, can you have a look at this? Seems to fix that crash around
Also I switched some debug out from %X to %x, this seems to
fit the existing calls and makes "grepping" easier.
==============
2002/01/17 17:13:41
author: dannybackx
lib/Xm/FontList.c(1.35)

Add a couple more XtNewString statements.
==============
2002/01/17 18:43:28
author: dannybackx
lib/Xm-2.0/RenderTable.c(1.20)

Implement the RenderTable free function as a FontList free.
Describe that XmFontListEntry has different allocation now.
==============
2002/01/18 14:11:22
author: amai
lib/Xm/FontList.c(1.36)

Copy font_name string which we will free later on.
==============
2002/01/18 14:17:04
author: amai
lib/Xm-2.0/Xme.c(1.26)

XmeGetDefaultDisplay() doesn't exist in Motif 2.1
==============
2002/01/18 14:24:10
author: amai
lib/Xm-2.0/Trait.c(1.20)
lib/Xm-2.0/Xme.c(1.27)

Move some #includes to beginning of file and update timestamps
==============
2002/01/19 13:40:43
author: dannybackx
lib/Xm/FileSB.c(1.108)
lib/Xm/List.c(1.115)
lib/Xm/XmString.c(1.77)

List.c : add renderTable resource. (2.x)
FileSB.c : fix copyright.
XmString.c : make a duplicate of _XmStringDraw() to add 2.x functionality.
==============
2002/01/21 23:02:19
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.51)
include/Motif-2.1/Xm/Xm.h.in(1.27)
lib/Xm/FontList.c(1.37)
lib/Xm/XmString.c(1.78)
lib/Xm-2.0/RenderTable.c(1.21)
lib/Xm-2.0/XmTabList.c(1.10)

Some of the support for 2.x style additions to XmStrings.
Implement XmStringGenerate() and XmStringParseText() in a simple way.
==============
2002/01/22 14:57:05
author: amai
lib/Xm-2.0/Container.c(1.73)

Fix compile error and two compile warnings (add casts)
==============
2002/01/22 23:03:17
author: dannybackx
lib/Xm/XmString.c(1.79)

Try to pass the rendition tag in the right way in an XmString.
==============
2002/01/22 23:07:39
author: dannybackx
lib/Xm-2.1/PrintShell.c(1.23)

Remove XmCreatePrintShell(), it's not a documented Motif API.
==============
2002/01/23 20:00:52
author: dannybackx
lib/Xm/XmString.c(1.80)
lib/Xm-2.0/RenderTable.c(1.22)

A couple of leftovers; now the XmStrings appear correct at the last
step of XmStringConcat() inside of XmStringGenerate() in test1.c
==============
2002/01/24 00:23:08
author: dannybackx
lib/Xm/List.c(1.116)
lib/Xm/XmString.c(1.81)
lib/Xm-2.0/RenderTable.c(1.23)

Fix a few bugs. Add a hack to start using a rendertable without a font.
==============
2002/01/25 14:34:56
author: amai
lib/Xm-2.0/RenderTable.c(1.24)

Fix typo in _XmRenderTableFinalise()
==============
2002/01/29 11:35:56
author: dannybackx
include/Motif-1.2/Xm/XmP.h(1.18)
include/Motif-1.2/XmI/XmI.h(1.52)
include/Motif-2.0/Xm/XmP.h(1.20)
lib/Xm/FontList.c(1.38)
lib/Xm/List.c(1.117)
lib/Xm/XmString.c(1.82)
lib/Xm-2.0/RenderTable.c(1.25)

Add a Display field to the XmRendition's internal structure.
Make sure that it, and the XmRenderTable's Display field get
filled in.
==============
2002/01/30 13:15:04
author: amai
configure.in(1.360)
lib/Xm-2.0/Container.c(1.74)

Add some checks for headers to configure.in and drop an odd #include
==============
2002/01/30 13:18:38
author: amai
lib/Xm/Text.c(1.153)

Improve handling of XmNvalue for XmText. Still incomplete in
Initialize()
==============
2002/01/30 14:20:51
author: dannybackx
lib/Xm/Vendor.c(1.83)

Bug #508297 Fix for WM_DELETE_WINDOW on VendorShell
==============
2002/01/30 14:45:49
author: amai
lib/Xm/Text.c(1.154)

Follow-up to last patch. Might fix (de)allocation problem
==============
2002/01/30 16:17:49
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.53)
lib/Xm/XmString.c(1.83)
lib/Xm-2.0/RenderTable.c(1.26)

Work in progress to try to get test/Xm-2.0/rendition/test1.c to
do something sensible. Working to get _XmStringDraw() in shape.
==============
2002/01/30 16:26:59
author: dannybackx
lib/Xm-2.0/RenderTable.c(1.27)

Hmm, always using the default font is not the right way to get this
example going.
==============
2002/01/30 17:58:56
author: dannybackx
lib/Xm/XmString.c(1.84)

Use font, foreground, and background parameters.
==============
2002/01/30 21:26:10
author: dannybackx
lib/Xm/FontList.c(1.39)
lib/Xm/XmString.c(1.85)
lib/Xm-2.0/RenderTable.c(1.28)
lib/Xm-2.0/XmTabList.c(1.11)

Get XmTabList allocations correct (use XmTabListCopy).
Generate the tab component in an XmString (was empty until now).
==============
2002/01/30 21:49:56
author: dannybackx
lib/Xm/XmString.c(1.86)

Add tab handling. Not working yet.
==============
2002/01/31 06:48:33
author: dannybackx
lib/Xm/XmString.c(1.87)

Forgot to take XmAS_IS into account. This fixes core in rendition/test1.
==============
2002/01/31 15:34:05
author: amai
lib/Xm/Text.c(1.155)
lib/Xm/TextF.c(1.123)

New fix for XmNvalue handling of XmText like Martin Simmons proposed.
Add two #includes
==============
2002/01/31 16:35:50
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.54)

Fix broken 1.2 build.
==============
2002/02/01 19:42:56
author: dannybackx
lib/Xm/XmString.c(1.88)
lib/Xm-2.0/RenderTable.c(1.29)

Make the tabs work a little bit.
==============
2002/02/02 08:31:58
author: dannybackx
lib/Xm/XmString.c(1.89)

This gets tabs in better shape. XmList highlighting is badly broken though.
==============
2002/02/02 16:01:42
author: amai
include/Motif-2.0/Xm/Xm.h.in(1.66)
include/Motif-2.1/Xm/Xm.h.in(1.28)

Add auto_selection_type to XmListCallbackStruct and change
selection_type to type char as indicated by OM specs
==============
2002/02/02 16:46:04
author: dannybackx
include/Include.Xm(1.9)

Add 2.0 version of Xm/DisplayP.h to add the callbacks related to renditions.
==============
2002/02/02 21:39:54
author: dannybackx
include/Motif-2.0/Xm/XmStrDefs.h(1.17)
lib/Xm/Display.c(1.24)
lib/Xm/XmString.c(1.90)

Prevent test/Xm-2.0/rendition/test3 from crashing.
==============
2002/02/03 11:25:27
author: amai
include/Motif-2.0/Xm/Xm.h.in(1.67)
include/Motif-2.0/Xm/XmP.h(1.21)
include/Motif-2.0/Xm/XmStrDefs.h(1.18)

Copy some new stuff from 2.1 headers. Trying to get 2.0 tree compile again
==============
2002/02/05 23:51:45
author: dannybackx
lib/Xm/XmString.c(1.91)

Aha. Took me a while but I got further in getting sizes correctly in
test/Xm-2.0/rendition/test1 . _XmStringExtent() is part of the game,
and attempts to simplify _XmStringDraw() make you understand why this
shouldn't be attempted at all :-)
==============
2002/02/05 23:55:51
author: dannybackx
lib/Xm/XmString.c(1.92)

Hmm, potential coredump avoided. Makes nedit work better.
==============
2002/02/06 19:30:37
author: dannybackx
lib/Xm/XmString.c(1.93)

Add tab handling to XmStringExtent().
==============
2002/02/06 20:41:17
author: dannybackx
include/Motif-1.2/Xm/XmP.h(1.19)
lib/Xm/FontList.c(1.40)
lib/Xm/Label.c(1.121)
lib/Xm/ResConvert.c(1.81)
lib/Xm/XmString.c(1.94)
lib/Xm-2.0/RenderTable.c(1.30)

Pass the display pointer when creating and extending RenderTables/
FontLists.
Call a function to make an "effective" rendition in Label for test3 to work.
Fix a silly mistake in _XmStringDraw.
==============
2002/02/06 21:05:57
author: dannybackx
lib/Xm/Label.c(1.122)

Put the stuff in place so we have a XmNrenderTable resource on XmLabel too.
==============
2002/02/06 21:06:41
author: dannybackx
include/Motif-1.2/XmI/XmI.h(1.55)

Declare the new function (similar to another one, but for internal
_XmString representation).
==============
2002/02/07 17:16:02
author: amai
include/Include.Xm(1.10)

Correct list WRT DisplayP.h
==============
2002/02/07 18:36:05
author: dannybackx
lib/Xm/XmString.c(1.95)

Use a temporary (copied) private GC in _XmStringDraw().
This may not be efficient (maybe it's better to save the stuff I change
by using XGetGCValues() and then restore the original GC), but it seems
to work. XmList now looks better.
==============
2002/02/07 20:54:57
author: dannybackx
lib/Xm/FontList.c(1.41)

Fix another colour problem - black on black in XmList.
==============
2002/02/08 15:37:57
author: dannybackx
lib/Xm/SelectionBox.c(1.61)

Remove the offending line, see my message to the mailing list.
This fixes the Filter/Apply button with no text, reported by Rob Lahaye.
==============
2002/02/08 15:38:18
author: dannybackx
lib/Xm/LabelG.c(1.102)

Make this recognise XmNrenderTable as well.
==============
2002/02/08 15:43:04
author: dannybackx
include/Motif-2.1/Xm/Xm.h.in(1.29)

Add a small comment
==============
2002/02/12 15:21:44
author: amai
clients/Motif-1.2/mwm/mwm.h(1.29)

Try to read the correct configuration (*mwmrc) file as specified
by the docs. Try to keep code readable and move that snippet out
of the yacc sources.
==============
2002/02/12 15:42:41
author: amai
acinclude.m4(1.44)
configure.in(1.361)
include/Motif-1.2/XmI/DebugUtil.h(1.42)

Some steps to get dbmalloc to work in addition to dmalloc
==============
2002/02/12 18:00:32
author: amai
clients/Motif-1.2/mwm/mwm.c(1.31)
clients/Motif-1.2/mwm/mwm.h(1.30)
clients/Motif-1.2/mwm/mwmparse.y(1.38)
doc/lessdox/clients/mwm.1(1.4)

Remove one debugging flag from mwm.
==============
2002/02/12 18:30:13
author: amai
acinclude.m4(1.45)

Separate some worthwhile macros in stand-alone files
==============
2002/02/17 16:01:10
author: dannybackx
lib/Xm/LTCvt.c(1.23)

Add a _LtDebug() call to detect calls to conversion functions, to try
to track the problem with String to iconPixmap conversions addressed
by Martin.
==============
2002/02/18 12:39:39
author: amai
lib/Xm/RowColumn.c(1.270)

Patch from Kazuyuki Funada:

     It doesn't seems that Lesstif updates the translation table correctly
          when using "Gadget". Actually, translation routine for "RowColumn" is
               called when any buttons on Dialog is pushed.

     Temporary workaround is the below. But I am not sure it ensures the
          correct behavior for all of case.
==============
2002/02/18 13:44:59
author: amai
configure.in(1.362)
Makefile.am(1.55)

Add yacc to ctags language list and convert AUTOMAKE_OPTIONS
to AM_AUTOMAKE_OPTIONS (which is even already obsolete in automake's CVS,
though)
==============
2002/02/18 17:29:45
author: amai
lib/Xm/Vendor.c(1.84)

SF Patch #461658: Fix for annoying XtRemoveGrab Messages
from Randy Ward.
==============
2002/02/18 21:29:42
author: amai
lib/Xm/Scale.c(1.50)

SF Patch [ #519559 ] Patch against 0.93.18 for bug# 463352
by Eric Branlund
==============
2002/02/18 21:32:42
author: amai
configure.in(1.363)

Drop AM_AUTOMAKE_OPTIONS: did only temporary exist in
automake/CVS ... Things should work w/o for now!
==============
2002/02/18 21:38:29
author: amai
lib/Xm/List.c(1.118)
lib/Xm/MenuShell.c(1.88)

Drop assert(.h). Was only used in two source files, I suggest
to use a another test code for debug builds.
==============
2002/02/20 21:39:15
author: dannybackx
include/Motif-1.2/XmI/MacrosI.h(1.42)
lib/Xm/ImageCache.c(1.27)
lib/Xm/Screen.c(1.28)
lib/Xm/Visual.c(1.36)

This *might* fix the 0x02 XmNiconPixmap problem reported recently.
(See the mailing list on Martin Simmons's message titled
	"XmNiconPixmap resource is not converted properly")
It does seem to work for the
	test/Xm/mainw/test1 -xrm "*iconPixmap: terminal"
example.
==============
2002/02/21 12:39:44
author: amai
lib/Xm/Manager.c(1.107)

Enable fix for event mask in AddKeyboardEntry() again:
the bug as seen in NEdit earlier with that code is not seen here.
==============
2002/02/21 13:33:03
author: amai
lib/Xm/Simple.c(1.27)

Properly initialize buttons in Radiobox. Earlier we often missed
to set one!
==============
2002/02/21 20:00:12
author: dannybackx
lib/Xm/Label.c(1.123)
lib/Xm/LabelG.c(1.103)
lib/Xm/List.c(1.119)

I'm taking the XmNrenderTable resource back out of these widgets. Its
definition is clearly not right, it breaks fontList resources, as
shown by OpenDX and by
  test/Xm/label/test4 -xrm "*fontList: *helvetica*bold*14*"
==============
2002/02/21 20:46:59
author: dannybackx
include/Motif-1.2/Xm/LabelP.h(1.4)

I hope this doesn't break binary compatibility, otherwise I'll have to
make more include files in include/Motif-2.1/Xm/ .

This solves part of the OpenDX wrong font problem, as demonstrated by
test/Xm/filesb/test1 -xrm "*fontList: *helvetica*bold-r*14*100-100*iso8859-1"
Unfortunately it requires an additional - hidden - resource, which also
seems to be present in Motif 2.x include files. Hopefully we're using
the resource in a similar way as Motif does; but there's only so many
things you can do with a Boolean flag.
==============
2002/02/21 20:58:40
author: dannybackx
lib/Xm/Label.c(1.125)
lib/Xm/LabelG.c(1.105)
lib/Xm/List.c(1.121)

The warning I just introduced is really too much ... comment it out
but leave the message in there.
==============
2002/02/22 14:43:36
author: amai
include/Motif-1.2/XmI/DebugUtil.h(1.43)
lib/Xm/DebugUtil.c(1.90)

Some cleanup on dmalloc/dbmalloc debugging stuff
==============
2002/02/23 13:20:22
author: dannybackx
lib/Xm/LabelG.c(1.106)

Initialise new resource, just to be sure.
==============
2002/02/23 13:21:22
author: dannybackx
lib/Xm/Screen.c(1.29)

Warning removal.
==============
2002/02/23 13:21:50
author: dannybackx
lib/Xm/Visual.c(1.37)

Clean up the allocation hack.
==============
2002/02/23 16:23:44
author: dannybackx
lib/Xm/LabelG.c(1.107)

Print value of font resource in initialize.
==============
2002/02/23 16:24:34
author: dannybackx
lib/Xm/FontList.c(1.42)

Add a macro to influence how verbose _LtDebug prints
==============
2002/02/25 13:17:18
author: amai
lib/Xm/LTXpm.c(1.31)
lib/Xm-2.0/Xpm.c(1.10)

Try to enable malloc-debuggers (DebugUtil.h) for Xpm as well
==============
2002/02/26 20:07:13
author: amai
clients/Motif-1.2/mwm/Makefile.am(1.36)
clients/Motif-1.2/mwm/mwm.h(1.31)
clients/Motif-2.0/mwm/Makefile.am(1.16)
clients/Motif-2.1/mwm/Makefile.am(1.15)

Drop unused -DXLIB_PATH, add fallbacks to source for XINCL_PATH and
MWM_DDIR
==============
2002/02/26 20:22:07
author: amai
lib/Mrm/Mrm.c(1.33)

Hardcode fallbacks for -Defines from Makefiles
==============
2002/02/26 20:25:53
author: amai
clients/Motif-1.2/mwm/Makefile.am(1.37)
clients/Motif-2.0/mwm/Makefile.am(1.17)
clients/Motif-2.1/mwm/Makefile.am(1.16)

Remove sample application default file
==============
2002/02/27 10:55:37
author: amai
lib/Xm/FileSB.c(1.109)

Fix for
SF Bugs [ #523311 ] XmFileSelectionDoSearch frees dir_mask
Don't free user-supplied dir_mask string
==============
2002/02/27 22:12:49
author: dannybackx
lib/Xm/FileSB.c(1.110)

Run the search functions again when SetValues changes the Procs.
This should solve bug #501092.
==============
2002/03/01 17:02:24
author: amai
lib/Xm-2.1/SSpinB.c(1.6)

Always #include DebugUtil.h last
==============
2002/03/01 17:04:34
author: amai
lib/Xm-2.0/IconG.c(1.34)
lib/Xm-2.0/RenderTable.c(1.31)

Add an #include
==============
2002/03/01 19:29:04
author: dannybackx
lib/Xm/XmString.c(1.96)

../Xm/XmString.c:2036: warning: `x' might be used uninitialized in this function
../Xm/XmString.c: In function `_XmStringDraw':
../Xm/XmString.c:2545: warning: `x' might be used uninitialized in this function

The code indicates that the other unit types are not supported yet,
but perhaps one could fill in another fallback value for x? (0?)
Also the comment that those types are not yet supported could
be an unconditional warning, not a DEBUGOUT().
==============
2002/03/02 13:49:26
author: dannybackx
include/Include.Xm(1.11)
include/Motif-1.2/Xm/LabelGP.h(1.5)
include/Motif-1.2/Xm/LabelP.h(1.5)
include/Motif-1.2/Xm/ListP.h(1.4)

Add 2.0 versions of these files (LabelGP.h, LabelP.h, ListP.h) to remove any
possibility of binary incompatibility in 1.2.
==============
2002/03/02 14:07:00
author: dannybackx
lib/Xm/Label.c(1.126)
lib/Xm/LabelG.c(1.108)
lib/Xm/List.c(1.122)

Get this to compile (for 1.2) after the latest include file changes.
==============
2002/03/07 18:53:52
author: amai
lib/Xm/Label.c(1.127)
lib/Xm/LabelG.c(1.109)
lib/Xm/Vendor.c(1.85)

Drop a prototype which is in XmI/ and extend a debug statement
==============
2002/03/09 16:54:44
author: dannybackx
lib/Xm/List.c(1.123)

#if away a piece of code that shouldn't be there any more.
==============
2002/03/15 12:12:33
author: amai
lib/Uil/uilparse.c(1.12)

Don't assume that existence of libgen.h implies basename() to be
available (reported for Solaris ULTRA 1=SunOS 5.5.1)
==============
2002/03/15 23:55:15
author: amai
lib/Xm/Xmos.c(1.45)

Fix "small" memory leaks and questionable usage of getcwd() call
==============
2002/03/17 13:57:10
author: dannybackx
lib/Xm/ResConvert.c(1.82)

_XmCvtStringToXmFontList() results should not be cached, this conflicts
with the implementation. This might cure the nedit problem.
==============
2002/03/17 17:19:49
author: amai
lib/Xm/DebugUtil.c(1.91)

Wildcard ('*') support for DEBUG_SOURCES env var
==============
2002/03/17 17:21:44
author: amai
doc/lessdox/clients/lesstif.1(1.18)

Document wildcard for DEBUG_SOURCES
==============
2002/03/19 18:32:32
author: dannybackx
lib/Xm/BulletinBoard.c(1.63)
lib/Xm/DebugUtil.c(1.92)
lib/Xm/Vendor.c(1.86)

Additional _LtDebug statements to show that LTAddGrab is called more
than once, with different arguments but with the same widget,
in test/Xm/xmstring/test9 . I believe this reveals that the cause
of bug #505555 (modal dialogs don't work) is in LTAddGrab.
==============
2002/03/19 18:59:36
author: dannybackx
lib/Xm/Vendor.c(1.87)

This might fix bug #505555 - modal behaviour.
==============
2002/03/20 21:18:00
author: dannybackx
lib/Xm/BulletinBoard.c(1.64)
lib/Xm/Vendor.c(1.88)

This, I believe, makes more dialogs become modal when necessary.
At least this one in nedit is modal now :
	Preferences->Default_Settings->Initital_WindowSize->Custom

Thanks Alexander for pointing to this.
==============
2002/03/21 15:37:22
author: dannybackx
lib/Xm/DialogS.c(1.31)
lib/Xm/Vendor.c(1.89)

Hmm, if you make a dialog modal, then it makes sense to stop modal
behaviour when popping down the dialog. Blush.
==============
2002/03/21 15:55:51
author: dannybackx
lib/Xm/Vendor.c(1.90)

Move stuff from Vendor's SetValues into the Vendor ExtObject's SetValues.
==============
2002/03/21 18:03:09
author: amai
configure.in(1.364)

Re-enable checks for select()
==============
2002/03/21 18:08:14
author: amai
clients/Motif-1.2/mwm/Makefile.am(1.38)
clients/Motif-1.2/mwm/events.c(1.19)

Add COPYING to distribution and fix compiler warning
==============
2002/03/21 22:18:55
author: amai
lib/Xm-2.0/Trait.c(1.21)

Make _LtDebugTraitReport() a static function
==============
2002/03/21 22:25:51
author: amai
include/Motif-1.2/XmI/XmI.h(1.56)
lib/Xm/Screen.c(1.30)
lib/Xm/Visual.c(1.38)

Add missing prototype for _XmPickupUnspecifiedPixmaps()
==============
2002/03/22 07:30:02
author: dannybackx
lib/Xm/DialogS.c(1.32)
lib/Xm/Vendor.c(1.91)
lib/Xm/Visual.c(1.39)

Fix a prototype, comment out a couple of lines of code that generate a
warning and that appear completely braindead. I wrote them of course.
==============
2002/03/22 07:37:43
author: dannybackx
include/Include.Xm(1.12)

Install ManagerP.h for non-1.2 installs also.
==============
2002/03/22 09:05:03
author: dannybackx
lib/Xm/BulletinBoard.c(1.65)
lib/Xm/DialogS.c(1.33)

This gets the example that Alexander sent me in better shape.
==============
2002/03/22 13:51:25
author: dannybackx
include/Motif-2.0/Xm/ToggleBP.h(1.9)

Add support to ToggleButton widget for XmNunselectColor.
This is one part of bug #489926.
==============
2002/03/22 15:28:02
author: amai
include/Motif-1.2/XmI/XmI.h(1.57)
lib/Xm/DialogS.c(1.34)

Add prototype for _LtVendorUnmap()
==============
2002/03/22 16:07:05
author: amai
include/Motif-1.2/XmI/DebugUtil.h(1.44)

Add a missing prototype
==============
2002/03/23 08:37:19
author: dannybackx
lib/Xm/BulletinBoard.c(1.66)

Rolling back a change, it breaks more than it fixes. Nedit freezes completely
after Ctrl-O for instance.
==============
2002/03/23 18:19:09
author: dannybackx
lib/Xm/DebugUtil.c(1.93)

Add some more code to print SetValues() parameters.
==============
2002/03/23 18:22:12
author: dannybackx
lib/Xm/PushBG.c(1.90)

Improve copyright message.
==============
2002/03/23 18:23:39
author: dannybackx
lib/Xm/ToggleBG.c(1.83)

Support for XmNunselectColor
==============
2002/03/23 18:24:41
author: dannybackx
lib/Xm/Vendor.c(1.92)

Get _LtDebug in SetValues to print that it's the XmVendorShell set_values().
==============
2002/03/25 18:54:49
author: dannybackx
include/Motif-2.0/Xm/ToggleBGP.h(1.10)

Auch, a forgotten commit.
==============
2002/03/26 12:00:49
author: amai
clients/Motif-1.2/mwm/screens.c(1.12)

Try to get mwm running again. Replace _XmGetFirstFont() which
purpose has changed by _XmFontListGetDefaultFont()
==============
2002/03/27 23:42:45
author: amai
clients/Motif-1.2/mwm/mwm.c(1.32)

Fix very minor memory leak. Catch -screens (not supported)
==============
2002/03/28 23:25:33
author: amai
doc/lessdox/clients/mwm.1(1.5)

Small fixes
==============
2002/03/28 23:29:09
author: amai
doc/lessdox/clients/xmbind.1(1.4)

some cosmetics
==============
2002/03/28 23:53:47
author: amai
lib/Xm-2.0/XmTabList.c(1.12)

DebugUtil.h should be last #include
==============
2002/03/28 23:57:56
author: amai
lib/Xm-2.0/Container.c(1.75)

Fix some "variable may be used uninitialized" compiler warnings.
Most were bogus, didn't check all for now...
==============
2002/03/28 23:59:32
author: amai
include/Motif-1.2/XmI/XmI.h(1.58)
lib/Xm/Frame.c(1.55)
lib/Xm/List.c(1.124)
lib/Xm/PanedW.c(1.54)
lib/Xm/Scale.c(1.51)
lib/Xm/Text.c(1.156)
lib/Xm/TextOut.c(1.106)
lib/Xm-2.0/Notebook.c(1.40)
lib/Xm-2.0/PanedW.c(1.22)

Have a single _XmMin(), _XmMax() macro definition
==============
2002/03/29 16:46:27
author: amai
include/Motif-1.2/XmI/DebugUtil.h(1.45)
include/Motif-1.2/XmI/XmI.h(1.60)
lib/Xm/DebugUtil.c(1.94)
lib/Xm/MapEvent.c(1.25)

Add missing prototype
==============
2002/03/29 16:50:43
author: amai
include/Motif-1.2/XmI/MacrosI.h(1.43)

Small changes to XmListPart for Motif 2.x compatibility:
add one entry and rename another one
==============
2002/03/29 17:16:18
author: dannybackx
lib/Xm/List.c(1.125)

I would guess that this fixes bug #563343. The code did look suspicious.
==============
2002/03/29 17:18:30
author: amai
include/Motif-1.2/XmI/XmI.h(1.59)

Add missing prototype for 2.x
==============
2002/03/29 17:21:47
author: amai
lib/Xm/LTV6Editres.c(1.16)
lib/Xm/ResConvert.c(1.83)
lib/Xm-2.1/Print.c(1.36)

Fix minor compiler warnings
==============
2002/03/29 18:17:00
author: dannybackx
lib/Xm/List.c(1.126)

Hmm, fix the off by one error I just introduced. The crash is gone, but
I'm not sure if extended select actually works.
==============
2002/03/30 09:19:47
author: dannybackx
lib/Xm/List.c(1.127)

Third commit on this bug report, now it actually works. I should turn on
my brain before starting to fix things.
==============
2002/03/30 10:09:46
author: dannybackx
lib/Xm/FileSB.c(1.111)

Bugfix for #470233. Hope this doesn't break anything.
	When in set_values we're changing XmNdirMask, I'm now
	copying this to XmNpattern too.
==============
2002/03/30 10:30:06
author: dannybackx
lib/Xm/FileSB.c(1.112)
lib/Xm/SelectionBox.c(1.62)

Fix bug #433474 - support for WORK_AREA in Xm(File)SelectionBoxGetChild.
==============
2002/03/30 11:57:13
author: dannybackx
clients/Motif-1.2/mwm/mwm.c(1.33)

Make file searching a bit more transparent.
==============
2002/03/30 12:07:35
author: dannybackx
lib/Xm/MapEvent.c(1.21)

Define an empty stub for _XmMapKeyEvents(). This function is described in
	http://motifdeveloper.com/tips/tip15.html
==============
2002/03/30 13:11:11
author: amai
clients/Motif-1.2/mwm/mwm.c(1.34)
clients/Motif-1.2/mwm/mwm.h(1.32)
clients/Motif-1.2/mwm/mwmparse.y(1.39)

More changes to find_config_file(): new signature, and less
dependent on MAX_PATH_LEN, remove strcspn()/C90 call.
Not fully tested yet, will do later on UN*X.
==============
2002/03/30 13:14:23
author: amai
lib/Xm/MapEvent.c(1.22)

_XmMapKeyEvents() stub returns 0 to make compiler happy
==============
2002/03/30 13:29:24
author: dannybackx
lib/Xm/MapEvent.c(1.23)

Quick hack - _XmMapKeyEvents now works for one event.
==============
2002/03/30 14:48:06
author: amai
clients/Motif-1.2/mwm/mwm.c(1.35)

Fixes for find_config_file(): my patch earlier today messed
up looking ~foo home directories and also sometimes used
a double-slash '//' separator
==============
2002/03/30 15:54:59
author: amai
clients/Motif-1.2/mwm/mwmparse.y(1.40)

Read config file in text mode on OS/2. Don't forget to close that file handlemwmparse.y
==============
2002/04/02 08:25:34
author: dannybackx
lib/Xm/ResConvert.c(1.84)

Text to ComboBoxType converter.
==============
2002/04/02 08:41:16
author: amai
lib/Xm/XmString.c(1.97)

Make DebugUtil.h the last #include
==============
2002/04/02 09:30:02
author: dannybackx
include/Motif-2.0/Xm/Xm.h.in(1.68)

Inconsistency with 1.2, 2.1 dirs which caused the build to break.
==============
2002/04/03 09:42:09
author: dannybackx
lib/Xm/MapEvent.c(1.24)

Hopefully this is a multi-accelerator implementation of _XmMapKeyEvents().
==============
2002/04/05 17:10:48
author: amai
include/Include.Xm(1.13)

Fix some inconsistencies: some P.h headers were declared to have
their 1.2 version also used in versions above - but they don't
==============
2002/04/05 17:35:48
author: amai
configure.in(1.365)

define RM and CP variables for rm/cp standard utils
==============
2002/04/12 18:13:27
author: dannybackx
lib/Xm/MenuShell.c(1.89)
lib/Xm/RowColumn.c(1.271)

In XmRowColumn, if we're in menu mode and our parent is a menu shell and
we get XmNx or XmNy passed to us, pass them on to our parent.
==============
2002/04/12 21:07:02
author: amai
lib/Xm/ArrowB.c(1.38)
lib/Xm/DialogS.c(1.35)
lib/Xm/DrawnB.c(1.46)
lib/Xm/Manager.c(1.108)
lib/Xm/PushBG.c(1.91)
lib/Xm/Text.c(1.157)
lib/Xm/xdnd.c(1.8)

#include order fixes
==============
2002/04/12 21:13:56
author: amai
lib/Xm/DropTrans.c(1.19)
lib/Xm/Frame.c(1.56)
lib/Xm/LabelG.c(1.110)
lib/Xm/PushBG.c(1.92)
lib/Xm/ScrolledW.c(1.127)

We don't need fallback #defines for XmUNSPECIFIED
==============
2002/04/12 23:38:43
author: amai
include/Makefile.am(1.15)

Move LTmisc.h/LTglob.h to correct place, namely in
include/*/XmI/. I also tried to adjust the Makefiles accordingly
==============
2002/04/13 08:58:42
author: amai
configure.in(1.366)

AC_INIT() was broken due to a recent commit. Make it look for lib/Xm/Vendor.c now
==============
2002/04/13 09:36:27
author: amai
include/Motif-1.2/uil/UilSymDef.h(1.4)
lib/Uil/uilparse.c(1.13)
clients/Motif-1.2/mwm/README(1.5)
clients/Motif-1.2/mwm/mwm.h(1.33)
clients/Motif-1.2/uil/Include.c(1.8)

Fix broken #include. Fix some stuff hardcoded to use paths of max. 255 chars
==============
2002/04/13 09:50:28
author: amai
Makefile.am(1.56)
include/.cvsignore(1.2)

Rename ASCII version of installation docs to INSTALL.txt
==============
2002/04/13 11:08:47
author: amai
include/Motif-2.1/Xm/PrintSP.h(1.7)
lib/Dt/DtPrintSetupBoxP.h(1.20)
lib/Xm-2.1/Print.c(1.37)
lib/Xm-2.1/PrintShell.c(1.24)

What happens if really trying to build a 2.1 version on a system
w/o libXp!? Now we have XmRedisplayWidget() then, should we have
all other functions in stublevel at least?!
==============
2002/04/13 12:13:57
author: amai
Makefile.am(1.57)

Remove references to obsolete Install
==============
2002/04/14 17:07:08
author: amai
include/.cvsignore(1.3)

Add entries
==============
2002/04/14 17:10:42
author: amai
configure.in(1.367)

New test release 0.93.21
==============
2002/04/16 18:03:46
author: amai
configure.in(1.368)

next attempt, 0.93.23 ...
==============
2002/04/17 16:45:28
author: amai
include/Motif-1.2/XmI/XmI.h(1.61)
lib/Xm/XmString.c(1.99)

Export _XmStringUpdate() again.
==============
2002/04/17 19:35:59
author: dannybackx
lib/Xm-2.0/Container.c(1.76)

Don't divide by 0. test/Xm-2.0/container/test5.c
==============
2002/04/17 19:40:39
author: dannybackx
lib/Xm/MapEvent.c(1.26)

Clarify text in debug statement.
==============
2002/04/17 19:51:34
author: amai
lib/Xm-2.0/Trait.c(1.22)

export _LtDebugTraitReport() again
==============
2002/04/18 16:45:32
author: amai
configure.in(1.369)

New attempt to make a test release
==============
2002/04/18 18:07:26
author: amai
lib/Xm-2.0/Direction.c(1.8)

Put some code in XmDirectionMatch() and XmDirectionMatchPartial() stubs...
==============
2002/04/20 06:47:34
author: dannybackx
lib/Xm/Label.c(1.128)
lib/Xm/LabelG.c(1.111)

Print out the check_set_render_table field when in debug.
==============
2002/04/20 06:59:21
author: dannybackx
include/.cvsignore(1.4)
include/Motif-1.2/.cvsignore(1.2)
include/Motif-2.0/.cvsignore(1.2)
include/Motif-2.1/.cvsignore(1.2)
include/Motif-CDE/.cvsignore(1.2)
include/Motif-CDE/Dt/.cvsignore(1.2)
include/Motif-CDE/DtI/.cvsignore(1.2)
include/Motif-CDE/Mrm/.cvsignore(1.2)
include/Motif-CDE/Xm/.cvsignore(1.2)
include/Motif-CDE/XmI/.cvsignore(1.2)
lib/.cvsignore(1.2)
lib/config/.cvsignore(1.3)
clients/.cvsignore(1.2)
clients/Motif-1.2/.cvsignore(1.2)
clients/Motif-1.2/mwm/.cvsignore(1.5)
clients/Motif-1.2/uil/.cvsignore(1.6)
clients/Motif-1.2/xmbind/.cvsignore(1.5)
clients/Motif-2.0/.cvsignore(1.2)
clients/Motif-2.0/mwm/.cvsignore(1.2)
clients/Motif-2.0/uil/.cvsignore(1.3)
clients/Motif-2.0/xmbind/.cvsignore(1.2)
clients/Motif-2.1/.cvsignore(1.2)
clients/Motif-2.1/mwm/.cvsignore(1.2)
clients/Motif-2.1/uil/.cvsignore(1.3)
clients/Motif-2.1/xmbind/.cvsignore(1.2)
doc/lessdox/.cvsignore(1.2)
doc/lessdox/clients/.cvsignore(1.3)
doc/lessdox/functions/.cvsignore(1.3)
doc/lessdox/widgets/.cvsignore(1.3)

Add nedit's backup files to the CVS ignore list.
==============
2002/04/20 15:14:17
author: dannybackx
lib/Xm/XmString.c(1.100)

Add other ways to specify tabs.
==============
2002/04/20 17:46:16
author: dannybackx
lib/Xm-2.0/Draw.c(1.15)

Add debug statement and some comment.
==============
2002/04/20 18:32:33
author: dannybackx
lib/Xm/ToggleBG.c(1.84)

This may get the unselectColor working better.
	The draw_toggle() function inside both sources is a mess,
	it really requires cleanup before adding functionality.
	There's some 2.x stuff missing, but adding it in this
	way is hard.
==============
2002/04/22 18:13:13
author: dannybackx
lib/Xm/Label.c(1.129)
lib/Xm/LabelG.c(1.112)
lib/Xm/List.c(1.128)

Install a hack on all the widgets dealing with a renderTable.
The resource should be 0 or 1, but some memory corruption is
happening; this shows itself primarily in font settings that
don't work (the default is used instead). OpenDX suffers
from this.

Still looking for the real solution. For now this generates
heaps of XmWarning messages which is a reasonable thing to
do because we have a bug somewhere.
==============
2002/04/24 12:05:31
author: amai
include/Motif-2.0/Xm/Xm.h.in(1.69)

XmREPLACE should be XmMERGE_REPLACE
==============
2002/04/24 19:33:08
author: dannybackx
lib/Xm/LabelG.c(1.113)
lib/Xm/PushBG.c(1.93)

Add about a zillion _LtDebug() calls.
==============
2002/04/24 19:54:46
author: dannybackx
lib/Xm/Gadget.c(1.21)
lib/Xm/PushBG.c(1.94)
lib/Xm/Shadow.c(1.21)

More _LtDebug()
==============
2002/04/25 11:10:32
author: amai
lib/Xm-2.1/Print.c(1.38)

Try to correct logic for UNIXLIKE catch
==============
2002/04/25 17:40:12
author: dannybackx
include/Motif-2.0/Xm/Xm.h.in(1.70)
include/Motif-2.1/Xm/Xm.h.in(1.30)
lib/Xm/Label.c(1.130)
lib/Xm/LabelG.c(1.114)
lib/Xm/List.c(1.129)

Finally ! This fixes the OpenDX font problem. ( Bug #540989. )

It turns out that the order of entries in the resource array of a widget
matters. The check_set_render_table field needs to be specified *before*
the entries that have the CallProc that uses this field. Otherwise,
the field is not initialised prior to use.
==============
2002/04/26 17:07:50
author: amai
lib/Xm-2.0/IconG.c(1.35)

Fix all(?) memory leaks
==============
2002/04/26 20:33:00
author: amai
include/Motif-2.1/Xm/PrintSP.h(1.8)
include/Motif-2.1/Xm/XmAll.h(1.2)

Some cosmetics
==============
2002/04/26 20:37:39
author: amai
include/Include.Xm(1.14)
include/Motif-2.1/Xm/SSpinB.h(1.4)
include/Motif-2.1/Xm/Xm.h.in(1.31)

Add some empty header which will be used later for SimpleSpinBox.
Declare XmSimpleSpinBoxCallbackStruct
==============
2002/04/27 19:23:46
author: dannybackx
configure.in(1.371)

Prepare a release.
==============
2002/04/29 10:49:26
author: amai
lib/Xm-2.1/Print.c(1.39)

Export stub interfaces even if libXp is not present
==============
2002/04/30 22:05:16
author: dannybackx
lib/Xm-2.1/Print.c(1.40)

Somehow the header of XmPrintToFile() was missing.
==============
2002/04/30 22:13:01
author: dannybackx
lib/Xm/MapEvent.c(1.27)

As mentioned on the OpenDX mailing list, the OpenDX implementation seems to
be correct and LessTif's _XmMapKeyEvents() was wrong.

This means that we must unconditionally allocate memory inside
_XmMapKeyEvents(), it is the responsibility of the caller to free it.

This was impossible to figure out as this is an undocumented Motif function.
==============
2002/05/02 17:25:03
author: dannybackx
lib/Xm/ScrolledW.c(1.128)

This may fix bug #539816 (unmapping scrolledlist hides widgets).
==============
2002/05/10 08:17:11
author: dannybackx
lib/Xm/Text.c(1.158)
lib/Xm/TextOut.c(1.107)

Try to get XmText to show insensitive state. (Bug #483018)
	Not working yet though. Why won't stipple work ?
==============
2002/05/10 09:10:27
author: dannybackx
lib/Xm/Text.c(1.159)
lib/Xm/TextOut.c(1.108)

Use XtAllocateGC instead of Xlib calls.
==============
2002/05/10 11:17:36
author: dannybackx
lib/Xm/Text.c(1.160)

Now it works. Fixes bug #483018 - XmText insensitive appearance is wrong.
==============
2002/05/10 13:32:04
author: dannybackx
lib/Xm/TextOut.c(1.109)

Use XCreateGC even though it's a bad idea until I find out exactly how
to call XtAllocateGC without crashing nedit.
==============
2002/05/11 17:58:04
author: dannybackx
lib/Xm/Text.c(1.161)
lib/Xm/TextOut.c(1.110)

Make sure to use XtAllocateGC/XtReleaseGC together, don't use the Xlib
call for freeing a GC if Xt allocated it. Also don't change a GC when
the widget is not realised.
==============
2002/05/12 00:44:13
author: amai
lib/Xm/TextOut.c(1.111)

Fix compiler warning for XtReleaseGC()
==============
2002/05/13 09:33:01
author: amai
lib/Xm-2.0/Xme.c(1.28)

Implement XmeQueryBestCursorSize()
==============
2002/05/13 12:50:37
author: amai
include/Motif-1.2/Xm/Screen.h(1.5)

Don't #include inside the extern "C" clause
==============
2002/05/13 18:23:45
author: dannybackx
lib/Xm/TextF.c(1.124)

Add new test, and fix XmTextField so it also shows a different state when
insensitive (a similar fix was done on XmText recently).
==============
2002/05/14 00:03:46
author: amai
include/Motif-2.1/Xm/XmStrDefs.h(1.7)
lib/Xm-2.0/ComboBox.c(1.58)

Correct typo
==============
2002/05/14 11:55:26
author: amai
lib/Xm-2.0/Xme.c(1.29)

Some lines of code for XmeCreateClassDialog()
==============
2002/05/14 15:42:29
author: amai
include/Motif-1.2/XmI/XmI.h(1.62)
lib/Xm/Shadow.c(1.22)
lib/Xm-2.0/Draw.c(1.16)

Introduce a stub _XmDrawPolygonShadow(). Should implement XmeDrawPolygonShadow()
later
==============
2002/05/14 16:36:11
author: amai
lib/Xm-2.0/Draw.c(1.17)

Fix typo
==============
2002/05/14 16:38:15
author: amai
lib/Xm-2.0/Draw.c(1.18)

Fix compiler warning
==============
2002/05/14 16:40:44
author: amai
clients/Motif-1.2/mwm/mwmstrings.h(1.3)
clients/Motif-1.2/mwm/resources.c(1.16)

One fix for SF Bugs #555226 alignment fault on sparc solaris
==============
2002/05/14 16:43:01
author: amai
clients/Motif-1.2/mwm/resources.c(1.17)

2nd fix for SF Bugs #555226 alignment fault on sparc solaris
==============
2002/05/14 21:21:30
author: amai
lib/Xm-2.0/Trait.c(1.23)

Add prototype to fix compiler warning
==============
2002/05/18 14:28:47
author: dannybackx
configure.in(1.373)

Increase the release number (0.93.33) for another test release, and fix
a small error in the test/ hierarchy.
==============
2002/05/18 15:32:38
author: dannybackx
configure.in(1.374)
configure.in(1.372)
configure.in(1.370)
configure.in(1.359)

PICO_VERSION update by make_release
==============
2002/05/18 16:08:51
author: dannybackx
include/Include.Xm(1.15)

This appears to fix things for the RPM build.
==============
2002/05/18 16:50:18
author: dannybackx
doc/lessdox/clients/Makefile.am(1.19)
doc/lessdox/functions/Makefile.am(1.10)
doc/lessdox/widgets/Makefile.am(1.27)

Stuff like man5_DATA don't work with newer versions of automake,
renaming to manfive_DATA at least makes the error message go away.
==============
2002/05/19 11:49:53
author: dannybackx
configure.in(1.375)

Bump version to 0.93.34
==============


Executive Summary
Of 625 files, 142 changed, and 483 had no change

File                                        Current Rev. Last Release 
acconfig.h                                  1.13         1.13         No Change
acinclude.m4                                1.45         1.43         
configure.in                                1.375        1.358        
Makefile.am                                 1.57         1.54         
include/.cvsignore                          1.4          1.1          
include/Include.Mrm                         1.6          1.6          No Change
include/Include.Xm                          1.15         1.7          
include/Include.XmI                         1.7          1.6          
include/Include.uil                         1.6          1.6          No Change
include/Makefile.am                         1.15         1.14         
include/Motif-1.2/.cvsignore                1.2          1.1          
include/Motif-1.2/Makefile.am               1.4          1.4          No Change
include/Motif-1.2/Mrm/.cvsignore            1.2          1.2          No Change
include/Motif-1.2/Mrm/Makefile.am           1.16         1.16         No Change
include/Motif-1.2/Mrm/MrmAppl.h             1.3          1.3          No Change
include/Motif-1.2/Mrm/MrmDecls.h            1.6          1.6          No Change
include/Motif-1.2/Mrm/MrmPrivate.h          1.4          1.4          No Change
include/Motif-1.2/Mrm/MrmPublic.h           1.3          1.3          No Change
include/Motif-1.2/Xm/.cvsignore             1.3          1.3          No Change
include/Motif-1.2/Xm/ArrowB.h               1.2          1.2          No Change
include/Motif-1.2/Xm/ArrowBG.h              1.3          1.3          No Change
include/Motif-1.2/Xm/ArrowBGP.h             1.3          1.3          No Change
include/Motif-1.2/Xm/ArrowBP.h              1.3          1.3          No Change
include/Motif-1.2/Xm/AtomMgr.h              1.2          1.2          No Change
include/Motif-1.2/Xm/BaseClassP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/BulletinB.h            1.2          1.2          No Change
include/Motif-1.2/Xm/BulletinBP.h           1.3          1.3          No Change
include/Motif-1.2/Xm/CacheP.h               1.3          1.3          No Change
include/Motif-1.2/Xm/CascadeB.h             1.2          1.2          No Change
include/Motif-1.2/Xm/CascadeBG.h            1.2          1.2          No Change
include/Motif-1.2/Xm/CascadeBGP.h           1.3          1.3          No Change
include/Motif-1.2/Xm/CascadeBP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/Command.h              1.2          1.2          No Change
include/Motif-1.2/Xm/CommandP.h             1.2          1.2          No Change
include/Motif-1.2/Xm/CutPaste.h             1.6          1.6          No Change
include/Motif-1.2/Xm/CutPasteP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/DesktopP.h             1.3          1.3          No Change
include/Motif-1.2/Xm/DialogS.h              1.2          1.2          No Change
include/Motif-1.2/Xm/DialogSEP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/DialogSP.h             1.2          1.2          No Change
include/Motif-1.2/Xm/Display.h              1.3          1.3          No Change
include/Motif-1.2/Xm/DisplayP.h             1.2          1.2          No Change
include/Motif-1.2/Xm/DragC.h                1.3          1.3          No Change
include/Motif-1.2/Xm/DragCP.h               1.3          1.3          No Change
include/Motif-1.2/Xm/DragDrop.h             1.2          1.2          No Change
include/Motif-1.2/Xm/DragIcon.h             1.3          1.3          No Change
include/Motif-1.2/Xm/DragIconP.h            1.3          1.3          No Change
include/Motif-1.2/Xm/DragOverS.h            1.2          1.2          No Change
include/Motif-1.2/Xm/DragOverSP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/DrawP.h                1.7          1.7          No Change
include/Motif-1.2/Xm/DrawingA.h             1.2          1.2          No Change
include/Motif-1.2/Xm/DrawingAP.h            1.3          1.3          No Change
include/Motif-1.2/Xm/DrawnB.h               1.2          1.2          No Change
include/Motif-1.2/Xm/DrawnBP.h              1.2          1.2          No Change
include/Motif-1.2/Xm/DropSMgr.h             1.7          1.7          No Change
include/Motif-1.2/Xm/DropSMgrP.h            1.3          1.3          No Change
include/Motif-1.2/Xm/DropTrans.h            1.2          1.2          No Change
include/Motif-1.2/Xm/DropTransP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/ExtObjectP.h           1.4          1.4          No Change
include/Motif-1.2/Xm/FileSB.h               1.2          1.2          No Change
include/Motif-1.2/Xm/FileSBP.h              1.6          1.6          No Change
include/Motif-1.2/Xm/Form.h                 1.2          1.2          No Change
include/Motif-1.2/Xm/FormP.h                1.7          1.7          No Change
include/Motif-1.2/Xm/Frame.h                1.2          1.2          No Change
include/Motif-1.2/Xm/FrameP.h               1.2          1.2          No Change
include/Motif-1.2/Xm/GadgetP.h              1.3          1.3          No Change
include/Motif-1.2/Xm/Label.h                1.2          1.2          No Change
include/Motif-1.2/Xm/LabelG.h               1.2          1.2          No Change
include/Motif-1.2/Xm/LabelGP.h              1.5          1.3          
include/Motif-1.2/Xm/LabelP.h               1.5          1.3          
include/Motif-1.2/Xm/List.h                 1.2          1.2          No Change
include/Motif-1.2/Xm/ListP.h                1.4          1.2          
include/Motif-1.2/Xm/MainW.h                1.2          1.2          No Change
include/Motif-1.2/Xm/MainWP.h               1.2          1.2          No Change
include/Motif-1.2/Xm/Makefile.am            1.24         1.24         No Change
include/Motif-1.2/Xm/ManagerP.h             1.5          1.4          
include/Motif-1.2/Xm/MenuShell.h            1.2          1.2          No Change
include/Motif-1.2/Xm/MenuShellP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/MenuUtilP.h            1.6          1.6          No Change
include/Motif-1.2/Xm/MessageB.h             1.2          1.2          No Change
include/Motif-1.2/Xm/MessageBP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/MwmUtil.h              1.2          1.2          No Change
include/Motif-1.2/Xm/PanedW.h               1.2          1.2          No Change
include/Motif-1.2/Xm/PanedWP.h              1.2          1.2          No Change
include/Motif-1.2/Xm/PrimitiveP.h           1.4          1.4          No Change
include/Motif-1.2/Xm/Protocols.h            1.4          1.4          No Change
include/Motif-1.2/Xm/ProtocolsP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/PushB.h                1.2          1.2          No Change
include/Motif-1.2/Xm/PushBG.h               1.2          1.2          No Change
include/Motif-1.2/Xm/PushBGP.h              1.3          1.3          No Change
include/Motif-1.2/Xm/PushBP.h               1.2          1.2          No Change
include/Motif-1.2/Xm/RCUtilsP.h             1.3          1.3          No Change
include/Motif-1.2/Xm/RepType.h              1.3          1.3          No Change
include/Motif-1.2/Xm/RowColumn.h            1.2          1.2          No Change
include/Motif-1.2/Xm/RowColumnP.h           1.7          1.7          No Change
include/Motif-1.2/Xm/SashP.h                1.2          1.2          No Change
include/Motif-1.2/Xm/Scale.h                1.2          1.2          No Change
include/Motif-1.2/Xm/ScaleP.h               1.2          1.2          No Change
include/Motif-1.2/Xm/Screen.h               1.5          1.4          
include/Motif-1.2/Xm/ScreenP.h              1.6          1.6          No Change
include/Motif-1.2/Xm/ScrollBar.h            1.3          1.3          No Change
include/Motif-1.2/Xm/ScrollBarP.h           1.3          1.3          No Change
include/Motif-1.2/Xm/ScrolledW.h            1.2          1.2          No Change
include/Motif-1.2/Xm/ScrolledWP.h           1.4          1.4          No Change
include/Motif-1.2/Xm/SelectioB.h            1.2          1.2          No Change
include/Motif-1.2/Xm/SelectioBP.h           1.3          1.3          No Change
include/Motif-1.2/Xm/SeparatoG.h            1.2          1.2          No Change
include/Motif-1.2/Xm/SeparatoGP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/Separator.h            1.2          1.2          No Change
include/Motif-1.2/Xm/SeparatorP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/ShellEP.h              1.3          1.3          No Change
include/Motif-1.2/Xm/TearOffBP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/TearOffP.h             1.4          1.4          No Change
include/Motif-1.2/Xm/Text.h                 1.4          1.4          No Change
include/Motif-1.2/Xm/TextF.h                1.3          1.3          No Change
include/Motif-1.2/Xm/TextFP.h               1.3          1.3          No Change
include/Motif-1.2/Xm/TextFSelP.h            1.2          1.2          No Change
include/Motif-1.2/Xm/TextInP.h              1.2          1.2          No Change
include/Motif-1.2/Xm/TextOutP.h             1.10         1.10         No Change
include/Motif-1.2/Xm/TextP.h                1.7          1.7          No Change
include/Motif-1.2/Xm/TextSelP.h             1.2          1.2          No Change
include/Motif-1.2/Xm/TextStrSoP.h           1.2          1.2          No Change
include/Motif-1.2/Xm/ToggleB.h              1.2          1.2          No Change
include/Motif-1.2/Xm/ToggleBG.h             1.3          1.3          No Change
include/Motif-1.2/Xm/ToggleBGP.h            1.5          1.5          No Change
include/Motif-1.2/Xm/ToggleBP.h             1.8          1.8          No Change
include/Motif-1.2/Xm/TransltnsP.h           1.6          1.6          No Change
include/Motif-1.2/Xm/VaSimpleP.h            1.5          1.5          No Change
include/Motif-1.2/Xm/VendorS.h              1.2          1.2          No Change
include/Motif-1.2/Xm/VendorSEP.h            1.6          1.6          No Change
include/Motif-1.2/Xm/VendorSP.h             1.4          1.4          No Change
include/Motif-1.2/Xm/VirtKeys.h             1.2          1.2          No Change
include/Motif-1.2/Xm/VirtKeysP.h            1.3          1.3          No Change
include/Motif-1.2/Xm/WorldP.h               1.2          1.2          No Change
include/Motif-1.2/Xm/Xm.h.in                1.21         1.20         
include/Motif-1.2/Xm/XmAll.h                1.3          1.3          No Change
include/Motif-1.2/Xm/XmP.h                  1.19         1.17         
include/Motif-1.2/Xm/XmStrDefs.h            1.8          1.8          No Change
include/Motif-1.2/Xm/XmosP.h                1.14         1.14         No Change
include/Motif-1.2/XmI/.cvsignore            1.2          1.2          No Change
include/Motif-1.2/XmI/AtomMgrI.h            1.3          1.3          No Change
include/Motif-1.2/XmI/CutPasteI.h           1.3          1.3          No Change
include/Motif-1.2/XmI/DebugUtil.h           1.45         1.41         
include/Motif-1.2/XmI/DragDropI.h           1.15         1.15         No Change
include/Motif-1.2/XmI/HashI.h               1.5          1.5          No Change
include/Motif-1.2/XmI/ImageCacheI.h         1.5          1.5          No Change
include/Motif-1.2/XmI/LTV5EditresP.h        1.3          1.3          No Change
include/Motif-1.2/XmI/LTV6EditresP.h        1.3          1.3          No Change
include/Motif-1.2/XmI/LTglob.h              1.1          1.1          No Change
include/Motif-1.2/XmI/LTmisc.h              1.1          1.1          No Change
include/Motif-1.2/XmI/MacrosI.h             1.43         1.41         
include/Motif-1.2/XmI/Makefile.am           1.13         1.13         No Change
include/Motif-1.2/XmI/MessagesI.h           1.4          1.4          No Change
include/Motif-1.2/XmI/TraversalI.h          1.3          1.3          No Change
include/Motif-1.2/XmI/UilI.h                1.9          1.9          No Change
include/Motif-1.2/XmI/XmI.h                 1.62         1.41         
include/Motif-1.2/XmI/XmXpm.h               1.5          1.5          No Change
include/Motif-1.2/XmI/XmXpmI.h              1.5          1.5          No Change
include/Motif-1.2/XmI/xdnd.h                1.1          1.1          No Change
include/Motif-1.2/uil/.cvsignore            1.3          1.3          No Change
include/Motif-1.2/uil/Makefile.am           1.9          1.9          No Change
include/Motif-1.2/uil/Uil.h                 1.3          1.3          No Change
include/Motif-1.2/uil/UilDBDef.h            1.2          1.2          No Change
include/Motif-1.2/uil/UilDef.h              1.3          1.3          No Change
include/Motif-1.2/uil/UilSymDef.h           1.4          1.3          
include/Motif-1.2/uil/UilSymGl.h            1.2          1.2          No Change
include/Motif-1.2/uil/XmAppl.uil            1.1          1.1          No Change
include/Motif-2.0/.cvsignore                1.2          1.1          
include/Motif-2.0/Makefile.am               1.3          1.3          No Change
include/Motif-2.0/Mrm/.cvsignore            1.2          1.2          No Change
include/Motif-2.0/Mrm/Makefile.am           1.18         1.18         No Change
include/Motif-2.0/Xm/.cvsignore             1.3          1.3          No Change
include/Motif-2.0/Xm/AccTextT.h             1.3          1.3          No Change
include/Motif-2.0/Xm/ActivatableT.h         1.2          1.2          No Change
include/Motif-2.0/Xm/ArrowBGP.h             1.4          1.4          No Change
include/Motif-2.0/Xm/ArrowBP.h              1.4          1.4          No Change
include/Motif-2.0/Xm/CSText.h               1.4          1.4          No Change
include/Motif-2.0/Xm/CSTextP.h              1.2          1.2          No Change
include/Motif-2.0/Xm/CareVisualT.h          1.2          1.2          No Change
include/Motif-2.0/Xm/ColorObjP.h            1.2          1.2          No Change
include/Motif-2.0/Xm/ComboBox.h             1.5          1.5          No Change
include/Motif-2.0/Xm/ComboBoxP.h            1.4          1.4          No Change
include/Motif-2.0/Xm/ContItemT.h            1.5          1.5          No Change
include/Motif-2.0/Xm/Container.h            1.3          1.3          No Change
include/Motif-2.0/Xm/ContainerP.h           1.16         1.13         
include/Motif-2.0/Xm/ContainerT.h           1.4          1.4          No Change
include/Motif-2.0/Xm/DialogSavvyT.h         1.2          1.2          No Change
include/Motif-2.0/Xm/DisplayP.h             1.3          1.3          No Change
include/Motif-2.0/Xm/DrawP.h                1.8          1.8          No Change
include/Motif-2.0/Xm/DrawingAP.h            1.3          1.3          No Change
include/Motif-2.0/Xm/FileSBP.h              1.4          1.4          No Change
include/Motif-2.0/Xm/Gadget.h               1.2          1.2          No Change
include/Motif-2.0/Xm/GadgetP.h              1.3          1.3          No Change
include/Motif-2.0/Xm/GrabShell.h            1.3          1.3          No Change
include/Motif-2.0/Xm/GrabShellP.h           1.3          1.3          No Change
include/Motif-2.0/Xm/IconG.h                1.3          1.3          No Change
include/Motif-2.0/Xm/IconGP.h               1.9          1.7          
include/Motif-2.0/Xm/JoinSideT.h            1.2          1.2          No Change
include/Motif-2.0/Xm/LabelGP.h              1.1          1.1          No Change
include/Motif-2.0/Xm/LabelP.h               1.1          1.1          No Change
include/Motif-2.0/Xm/LayoutT.h              1.3          1.3          No Change
include/Motif-2.0/Xm/ListP.h                1.2          1.2          No Change
include/Motif-2.0/Xm/Makefile.am            1.59         1.59         No Change
include/Motif-2.0/Xm/Manager.h              1.2          1.2          No Change
include/Motif-2.0/Xm/MenuShellP.h           1.3          1.3          No Change
include/Motif-2.0/Xm/MenuT.h                1.3          1.3          No Change
include/Motif-2.0/Xm/NavigatorT.h           1.4          1.4          No Change
include/Motif-2.0/Xm/Notebook.h             1.4          1.4          No Change
include/Motif-2.0/Xm/NotebookP.h            1.6          1.6          No Change
include/Motif-2.0/Xm/PanedWP.h              1.3          1.3          No Change
include/Motif-2.0/Xm/Primitive.h            1.2          1.2          No Change
include/Motif-2.0/Xm/PrimitiveP.h           1.5          1.5          No Change
include/Motif-2.0/Xm/ScaleP.h               1.3          1.3          No Change
include/Motif-2.0/Xm/ScrollFrameT.h         1.3          1.3          No Change
include/Motif-2.0/Xm/ScrolledWP.h           1.3          1.3          No Change
include/Motif-2.0/Xm/SpecRenderT.h          1.3          1.3          No Change
include/Motif-2.0/Xm/SpinB.h                1.5          1.5          No Change
include/Motif-2.0/Xm/SpinBP.h               1.11         1.11         No Change
include/Motif-2.0/Xm/TakesDefT.h            1.3          1.3          No Change
include/Motif-2.0/Xm/ToggleBGP.h            1.10         1.8          
include/Motif-2.0/Xm/ToggleBP.h             1.9          1.8          
include/Motif-2.0/Xm/TraitP.h               1.4          1.4          No Change
include/Motif-2.0/Xm/Transfer.h             1.3          1.3          No Change
include/Motif-2.0/Xm/TransferP.h            1.8          1.8          No Change
include/Motif-2.0/Xm/TransferT.h            1.1          1.1          No Change
include/Motif-2.0/Xm/TransltnsP.h           1.5          1.5          No Change
include/Motif-2.0/Xm/TxtPropCv.h            1.3          1.3          No Change
include/Motif-2.0/Xm/VendorSEP.h            1.5          1.5          No Change
include/Motif-2.0/Xm/Xm.h.in                1.70         1.65         
include/Motif-2.0/Xm/XmAll.h                1.3          1.3          No Change
include/Motif-2.0/Xm/XmIm.h                 1.3          1.3          No Change
include/Motif-2.0/Xm/XmP.h                  1.21         1.19         
include/Motif-2.0/Xm/XmStrDefs.h            1.18         1.16         
include/Motif-2.0/Xm/XpmP.h                 1.2          1.2          No Change
include/Motif-2.0/XmI/.cvsignore            1.2          1.2          No Change
include/Motif-2.0/XmI/DirectionI.h          1.4          1.4          No Change
include/Motif-2.0/XmI/Makefile.am           1.19         1.19         No Change
include/Motif-2.0/XmI/ManagerI.h            1.1          1.1          No Change
include/Motif-2.0/XmI/MessagesI.h           1.3          1.3          No Change
include/Motif-2.0/XmI/PixConvI.h            1.4          1.4          No Change
include/Motif-2.0/XmI/PopupUtil.h           1.4          1.4          No Change
include/Motif-2.0/XmI/TransltnsI.h          1.1          1.1          No Change
include/Motif-2.0/XmI/XpmI.h                1.5          1.5          No Change
include/Motif-2.0/uil/.cvsignore            1.2          1.2          No Change
include/Motif-2.0/uil/Makefile.am           1.11         1.11         No Change
include/Motif-2.1/.cvsignore                1.2          1.1          
include/Motif-2.1/Makefile.am               1.3          1.3          No Change
include/Motif-2.1/Mrm/.cvsignore            1.2          1.2          No Change
include/Motif-2.1/Mrm/Makefile.am           1.14         1.14         No Change
include/Motif-2.1/Xm/.cvsignore             1.4          1.4          No Change
include/Motif-2.1/Xm/Makefile.am            1.22         1.22         No Change
include/Motif-2.1/Xm/Print.h                1.9          1.9          No Change
include/Motif-2.1/Xm/PrintSP.h              1.8          1.6          
include/Motif-2.1/Xm/SSpinB.h               1.4          1.3          
include/Motif-2.1/Xm/SSpinBP.h              1.1          1.1          No Change
include/Motif-2.1/Xm/TransltnsP.h           1.1          1.1          No Change
include/Motif-2.1/Xm/Xm.h.in                1.31         1.21         
include/Motif-2.1/Xm/XmAll.h                1.2          1.1          
include/Motif-2.1/Xm/XmStrDefs.h            1.7          1.6          
include/Motif-2.1/XmI/.cvsignore            1.2          1.2          No Change
include/Motif-2.1/XmI/Makefile.am           1.11         1.11         No Change
include/Motif-2.1/XmI/MessagesI.h           1.1          1.1          No Change
include/Motif-2.1/uil/.cvsignore            1.2          1.2          No Change
include/Motif-2.1/uil/Makefile.am           1.12         1.12         No Change
include/Motif-CDE/.cvsignore                1.2          1.1          
include/Motif-CDE/Makefile.am               1.2          1.2          No Change
include/Motif-CDE/Dt/.cvsignore             1.2          1.1          
include/Motif-CDE/Dt/Makefile.am            1.2          1.2          No Change
include/Motif-CDE/DtI/.cvsignore            1.2          1.1          
include/Motif-CDE/DtI/Makefile.am           1.2          1.2          No Change
include/Motif-CDE/Mrm/.cvsignore            1.2          1.1          
include/Motif-CDE/Mrm/Makefile.am           1.2          1.2          No Change
include/Motif-CDE/Xm/.cvsignore             1.2          1.1          
include/Motif-CDE/Xm/ColorObj.h             1.1          1.1          No Change
include/Motif-CDE/Xm/ColorObjP.h            1.1          1.1          No Change
include/Motif-CDE/Xm/IconFile.h             1.1          1.1          No Change
include/Motif-CDE/Xm/IconFileP.h            1.1          1.1          No Change
include/Motif-CDE/Xm/Makefile.am            1.2          1.2          No Change
include/Motif-CDE/XmI/.cvsignore            1.2          1.1          
include/Motif-CDE/XmI/Makefile.am           1.2          1.2          No Change
lib/.cvsignore                              1.2          1.1          
lib/Makefile.am                             1.9          1.9          No Change
lib/Dt/.cvsignore                           1.2          1.2          No Change
lib/Dt/DtPrintSetupBox.c                    1.46         1.46         No Change
lib/Dt/DtPrintSetupBoxP.h                   1.20         1.19         
lib/Dt/DtPrintSetupData.c                   1.18         1.18         No Change
lib/Dt/Makefile.am                          1.19         1.19         No Change
lib/Dt/Print.h                              1.11         1.11         No Change
lib/Mrm/.cvsignore                          1.2          1.2          No Change
lib/Mrm/Makefile.am                         1.31         1.31         No Change
lib/Mrm/Mrm.c                               1.33         1.32         
lib/Mrm/Mrm.h                               1.1          1.1          No Change
lib/Mrm/lookup.c                            1.12         1.12         No Change
lib/Mrm/lookup.h                            1.5          1.5          No Change
lib/Mrm/misc.c                              1.9          1.9          No Change
lib/Mrm/misc.h                              1.7          1.7          No Change
lib/Mrm/uil.h                               1.4          1.4          No Change
lib/Mrm-2.0/.cvsignore                      1.2          1.2          No Change
lib/Mrm-2.0/Makefile.am                     1.32         1.32         No Change
lib/Mrm-2.1/.cvsignore                      1.2          1.2          No Change
lib/Mrm-2.1/Makefile.am                     1.18         1.18         No Change
lib/Uil/.cvsignore                          1.2          1.2          No Change
lib/Uil/Makefile.am                         1.14         1.14         No Change
lib/Uil/Uil.c                               1.9          1.9          No Change
lib/Uil/UilData.c                           1.7          1.7          No Change
lib/Uil/uillex.c                            1.16         1.15         
lib/Uil/uilparse.c                          1.13         1.11         
lib/Uil/uilsym.c                            1.6          1.6          No Change
lib/Uil-2.0/.cvsignore                      1.2          1.2          No Change
lib/Uil-2.0/Makefile.am                     1.11         1.11         No Change
lib/Uil-2.1/.cvsignore                      1.2          1.2          No Change
lib/Uil-2.1/Makefile.am                     1.12         1.12         No Change
lib/Xm/.cvsignore                           1.2          1.2          No Change
lib/Xm/.indent.pro                          1.1          1.1          No Change
lib/Xm/ArrowB.c                             1.38         1.37         
lib/Xm/ArrowBG.c                            1.33         1.33         No Change
lib/Xm/AtomMgr.c                            1.9          1.9          No Change
lib/Xm/BaseClass.c                          1.26         1.26         No Change
lib/Xm/BulletinBoard.c                      1.66         1.62         
lib/Xm/Cache.c                              1.13         1.13         No Change
lib/Xm/CascadeB.c                           1.159        1.159        No Change
lib/Xm/CascadeBG.c                          1.146        1.146        No Change
lib/Xm/Command.c                            1.22         1.22         No Change
lib/Xm/CutPaste.c                           1.23         1.23         No Change
lib/Xm/DebugUtil.c                          1.95         1.89         
lib/Xm/Desktop.c                            1.10         1.10         No Change
lib/Xm/Dest.c                               1.4          1.4          No Change
lib/Xm/DialogS.c                            1.35         1.30         
lib/Xm/Display.c                            1.24         1.23         
lib/Xm/DragBS.c                             1.41         1.41         No Change
lib/Xm/DragC.c                              1.36         1.36         No Change
lib/Xm/DragIcon.c                           1.17         1.17         No Change
lib/Xm/DragOverS.c                          1.23         1.23         No Change
lib/Xm/DragUnder.c                          1.7          1.7          No Change
lib/Xm/DrawingArea.c                        1.44         1.44         No Change
lib/Xm/DrawnB.c                             1.46         1.45         
lib/Xm/DropSMgr.c                           1.40         1.40         No Change
lib/Xm/DropSMgrI.c                          1.7          1.7          No Change
lib/Xm/DropTrans.c                          1.19         1.18         
lib/Xm/ExtObject.c                          1.10         1.10         No Change
lib/Xm/FileSB.c                             1.113        1.107        
lib/Xm/FontList.c                           1.42         1.25         
lib/Xm/Form.c                               1.175        1.175        No Change
lib/Xm/Frame.c                              1.56         1.54         
lib/Xm/Gadget.c                             1.21         1.20         
lib/Xm/GadgetUtil.c                         1.13         1.13         No Change
lib/Xm/GeoUtils.c                           1.55         1.55         No Change
lib/Xm/Hash.c                               1.10         1.10         No Change
lib/Xm/ImageCache.c                         1.27         1.26         
lib/Xm/LTCvt.c                              1.23         1.22         
lib/Xm/LTV5Editres.c                        1.9          1.9          No Change
lib/Xm/LTV6Editres.c                        1.16         1.15         
lib/Xm/LTXpm.c                              1.31         1.30         
lib/Xm/LTglob.c                             1.29         1.28         
lib/Xm/Label.c                              1.130        1.120        
lib/Xm/LabelG.c                             1.114        1.101        
lib/Xm/List.c                               1.129        1.114        
lib/Xm/MainW.c                              1.63         1.63         No Change
lib/Xm/Makefile.am                          1.44         1.44         No Change
lib/Xm/Manager.c                            1.108        1.104        
lib/Xm/MapEvent.c                           1.27         1.20         
lib/Xm/MenuShell.c                          1.89         1.87         
lib/Xm/MenuUtil.c                           1.66         1.66         No Change
lib/Xm/MessageB.c                           1.46         1.46         No Change
lib/Xm/Messages.c                           1.7          1.7          No Change
lib/Xm/Mwm.c                                1.6          1.6          No Change
lib/Xm/Obsolete.c                           1.12         1.12         No Change
lib/Xm/PanedW.c                             1.54         1.53         
lib/Xm/Primitive.c                          1.50         1.47         
lib/Xm/Protocols.c                          1.14         1.14         No Change
lib/Xm/PushB.c                              1.83         1.83         No Change
lib/Xm/PushBG.c                             1.94         1.89         
lib/Xm/RCUtils.c                            1.113        1.113        No Change
lib/Xm/ReadImage.c                          1.4          1.4          No Change
lib/Xm/Region.c                             1.9          1.9          No Change
lib/Xm/RepType.c                            1.21         1.20         
lib/Xm/ResConvert.c                         1.85         1.79         
lib/Xm/ResInd.c                             1.26         1.26         No Change
lib/Xm/RowColumn.c                          1.271        1.269        
lib/Xm/Sash.c                               1.17         1.17         No Change
lib/Xm/Scale.c                              1.51         1.49         
lib/Xm/Screen.c                             1.30         1.27         
lib/Xm/ScrollBar.c                          1.61         1.61         No Change
lib/Xm/ScrolledW.c                          1.128        1.126        
lib/Xm/Selection.c                          1.7          1.7          No Change
lib/Xm/SelectionBox.c                       1.62         1.56         
lib/Xm/SeparatoG.c                          1.21         1.21         No Change
lib/Xm/Separator.c                          1.14         1.14         No Change
lib/Xm/Shadow.c                             1.22         1.20         
lib/Xm/ShellExt.c                           1.7          1.7          No Change
lib/Xm/Simple.c                             1.27         1.26         
lib/Xm/TearOff.c                            1.49         1.49         No Change
lib/Xm/TearOffB.c                           1.23         1.23         No Change
lib/Xm/Text.c                               1.161        1.152        
lib/Xm/TextF.c                              1.124        1.120        
lib/Xm/TextIn.c                             1.75         1.75         No Change
lib/Xm/TextOut.c                            1.111        1.103        
lib/Xm/TextStrSo.c                          1.58         1.58         No Change
lib/Xm/ToggleB.c                            1.82         1.80         
lib/Xm/ToggleBG.c                           1.84         1.82         
lib/Xm/TrackLoc.c                           1.7          1.7          No Change
lib/Xm/Transltns.c                          1.14         1.14         No Change
lib/Xm/TravAct.c                            1.15         1.15         No Change
lib/Xm/Traversal.c                          1.41         1.41         No Change
lib/Xm/UniqueEvent.c                        1.7          1.7          No Change
lib/Xm/VaSimple.c                           1.16         1.16         No Change
lib/Xm/Vendor.c                             1.92         1.82         
lib/Xm/VirtKeys.c                           1.21         1.21         No Change
lib/Xm/Visual.c                             1.39         1.35         
lib/Xm/World.c                              1.7          1.7          No Change
lib/Xm/XmIm.c                               1.33         1.30         
lib/Xm/XmStrDefs.c                          1.8          1.8          No Change
lib/Xm/XmString.c                           1.100        1.72         
lib/Xm/Xmos.c                               1.46         1.44         
lib/Xm/inlines.in                           1.3          1.3          No Change
lib/Xm/misc.c                               1.23         1.22         
lib/Xm/xdnd.c                               1.8          1.7          
lib/Xm-2.0/.cvsignore                       1.3          1.3          No Change
lib/Xm-2.0/CSText.c                         1.8          1.8          No Change
lib/Xm-2.0/ComboBox.c                       1.58         1.57         
lib/Xm-2.0/Container.c                      1.76         1.52         
lib/Xm-2.0/Direction.c                      1.8          1.7          
lib/Xm-2.0/Draw.c                           1.18         1.14         
lib/Xm-2.0/GrabShell.c                      1.23         1.23         No Change
lib/Xm-2.0/IconG.c                          1.35         1.24         
lib/Xm-2.0/Makefile.am                      1.60         1.60         No Change
lib/Xm-2.0/Messages.c                       1.5          1.5          No Change
lib/Xm-2.0/Notebook.c                       1.40         1.39         
lib/Xm-2.0/PanedW.c                         1.22         1.21         
lib/Xm-2.0/PixConv.c                        1.10         1.10         No Change
lib/Xm-2.0/PopupUtil.c                      1.9          1.9          No Change
lib/Xm-2.0/RenderTable.c                    1.31         1.15         
lib/Xm-2.0/SpinBox.c                        1.41         1.41         No Change
lib/Xm-2.0/Trait.c                          1.23         1.19         
lib/Xm-2.0/Transfer.c                       1.11         1.11         No Change
lib/Xm-2.0/TranslNew.c                      1.11         1.11         No Change
lib/Xm-2.0/XmStrDefs.c                      1.7          1.7          No Change
lib/Xm-2.0/XmTabList.c                      1.12         1.6          
lib/Xm-2.0/Xme.c                            1.29         1.25         
lib/Xm-2.0/Xpm.c                            1.10         1.9          
lib/Xm-2.1/.cvsignore                       1.3          1.3          No Change
lib/Xm-2.1/Makefile.am                      1.23         1.23         No Change
lib/Xm-2.1/Messages.c                       1.2          1.2          No Change
lib/Xm-2.1/Print.c                          1.40         1.35         
lib/Xm-2.1/PrintShell.c                     1.24         1.22         
lib/Xm-2.1/SSpinB.c                         1.6          1.5          
lib/Xm-2.1/XmStrDefs.c                      1.2          1.2          No Change
lib/config/.cvsignore                       1.3          1.2          
lib/config/Imake.tmpl.in                    1.4          1.4          No Change
lib/config/LessTif.rules                    1.2          1.2          No Change
lib/config/LessTif.tmpl.in                  1.3          1.3          No Change
lib/config/Makefile.am                      1.6          1.6          No Change
lib/config/host.def                         1.1          1.1          No Change
lib/config/mxmkmf.in                        1.5          1.5          No Change
clients/.cvsignore                          1.2          1.1          
clients/Makefile.am                         1.3          1.3          No Change
clients/Motif-1.2/.cvsignore                1.2          1.1          
clients/Motif-1.2/Makefile.am               1.4          1.4          No Change
clients/Motif-1.2/mwm/.cvsignore            1.5          1.4          
clients/Motif-1.2/mwm/COPYING               1.1          1.1          No Change
clients/Motif-1.2/mwm/Makefile.am           1.38         1.35         
clients/Motif-1.2/mwm/Mwm.ad                1.2          1.2          No Change
clients/Motif-1.2/mwm/README                1.5          1.4          
clients/Motif-1.2/mwm/alt.map               1.1          1.1          No Change
clients/Motif-1.2/mwm/colormaps.c           1.4          1.4          No Change
clients/Motif-1.2/mwm/cursors.c             1.5          1.5          No Change
clients/Motif-1.2/mwm/decorate.c            1.11         1.11         No Change
clients/Motif-1.2/mwm/defaults.c            1.10         1.10         No Change
clients/Motif-1.2/mwm/desktop.c             1.4          1.4          No Change
clients/Motif-1.2/mwm/events.c              1.19         1.18         
clients/Motif-1.2/mwm/functions.c           1.21         1.21         No Change
clients/Motif-1.2/mwm/gethostname.c         1.4          1.4          No Change
clients/Motif-1.2/mwm/icons.c               1.16         1.16         No Change
clients/Motif-1.2/mwm/menus.c               1.20         1.20         No Change
clients/Motif-1.2/mwm/misc.c                1.16         1.16         No Change
clients/Motif-1.2/mwm/move.c                1.6          1.6          No Change
clients/Motif-1.2/mwm/mwm.c                 1.35         1.29         
clients/Motif-1.2/mwm/mwm.h                 1.33         1.27         
clients/Motif-1.2/mwm/mwmerr.c              1.4          1.4          No Change
clients/Motif-1.2/mwm/mwmlex.l              1.10         1.10         No Change
clients/Motif-1.2/mwm/mwmparse.y            1.40         1.34         
clients/Motif-1.2/mwm/mwmstrings.h          1.3          1.2          
clients/Motif-1.2/mwm/pager.c               1.6          1.6          No Change
clients/Motif-1.2/mwm/pan.c                 1.7          1.7          No Change
clients/Motif-1.2/mwm/props.c               1.8          1.8          No Change
clients/Motif-1.2/mwm/resize.c              1.7          1.7          No Change
clients/Motif-1.2/mwm/resources.c           1.17         1.15         
clients/Motif-1.2/mwm/screens.c             1.12         1.11         
clients/Motif-1.2/mwm/system.mwmrc          1.5          1.5          No Change
clients/Motif-1.2/mwm/windows.c             1.21         1.21         No Change
clients/Motif-1.2/uil/.cvsignore            1.6          1.5          
clients/Motif-1.2/uil/Attribute.c           1.9          1.9          No Change
clients/Motif-1.2/uil/Attribute.h           1.5          1.5          No Change
clients/Motif-1.2/uil/Callback.c            1.7          1.7          No Change
clients/Motif-1.2/uil/Callback.h            1.4          1.4          No Change
clients/Motif-1.2/uil/Expression.c          1.5          1.5          No Change
clients/Motif-1.2/uil/Expression.h          1.3          1.3          No Change
clients/Motif-1.2/uil/ExpressionList.c      1.7          1.7          No Change
clients/Motif-1.2/uil/ExpressionList.h      1.5          1.5          No Change
clients/Motif-1.2/uil/FakeWidget.c          1.7          1.7          No Change
clients/Motif-1.2/uil/FakeWidget.h          1.4          1.4          No Change
clients/Motif-1.2/uil/Include.c             1.8          1.7          
clients/Motif-1.2/uil/Include.h             1.3          1.3          No Change
clients/Motif-1.2/uil/Makefile.am           1.28         1.28         No Change
clients/Motif-1.2/uil/MrmTypes.c            1.9          1.9          No Change
clients/Motif-1.2/uil/MrmTypes.h            1.7          1.7          No Change
clients/Motif-1.2/uil/glue.c                1.10         1.10         No Change
clients/Motif-1.2/uil/glue.h                1.5          1.5          No Change
clients/Motif-1.2/uil/lex.l                 1.9          1.9          No Change
clients/Motif-1.2/uil/main.c                1.10         1.10         No Change
clients/Motif-1.2/uil/main.h                1.1          1.1          No Change
clients/Motif-1.2/uil/newuil.c              1.7          1.7          No Change
clients/Motif-1.2/uil/yacc.y                1.13         1.13         No Change
clients/Motif-1.2/xmbind/.cvsignore         1.5          1.4          
clients/Motif-1.2/xmbind/Makefile.am        1.16         1.16         No Change
clients/Motif-1.2/xmbind/xmbind.c           1.9          1.9          No Change
clients/Motif-2.0/.cvsignore                1.2          1.1          
clients/Motif-2.0/Makefile.am               1.1          1.1          No Change
clients/Motif-2.0/mwm/.cvsignore            1.2          1.1          
clients/Motif-2.0/mwm/Makefile.am           1.17         1.15         
clients/Motif-2.0/uil/.cvsignore            1.3          1.2          
clients/Motif-2.0/uil/Makefile.am           1.11         1.11         No Change
clients/Motif-2.0/xmbind/.cvsignore         1.2          1.1          
clients/Motif-2.0/xmbind/Makefile.am        1.7          1.7          No Change
clients/Motif-2.1/.cvsignore                1.2          1.1          
clients/Motif-2.1/Makefile.am               1.1          1.1          No Change
clients/Motif-2.1/mwm/.cvsignore            1.2          1.1          
clients/Motif-2.1/mwm/Makefile.am           1.16         1.14         
clients/Motif-2.1/uil/.cvsignore            1.3          1.2          
clients/Motif-2.1/uil/Makefile.am           1.12         1.12         No Change
clients/Motif-2.1/xmbind/.cvsignore         1.2          1.1          
clients/Motif-2.1/xmbind/Makefile.am        1.7          1.7          No Change
clients/Motif-CDE/README                    1.1          1.1          No Change
doc/lessdox/.cvsignore                      1.2          1.1          
doc/lessdox/Makefile.am                     1.4          1.4          No Change
doc/lessdox/clients/.cvsignore              1.3          1.2          
doc/lessdox/clients/Makefile.am             1.19         1.18         
doc/lessdox/clients/VirtualBindings.5       1.1          1.1          No Change
doc/lessdox/clients/lesstif.1               1.18         1.17         
doc/lessdox/clients/ltversion.1             1.1          1.1          No Change
doc/lessdox/clients/mwm.1                   1.5          1.3          
doc/lessdox/clients/mwmrc.5                 1.2          1.2          No Change
doc/lessdox/clients/uil.1                   1.2          1.2          No Change
doc/lessdox/clients/xmbind.1                1.4          1.3          
doc/lessdox/functions/.cvsignore            1.3          1.2          
doc/lessdox/functions/Makefile.am           1.10         1.9          
doc/lessdox/functions/XmGetTextSource.sgml  1.1          1.1          No Change
doc/lessdox/support/CATALOG                 1.1          1.1          No Change
doc/lessdox/support/ISOlat1.sgml            1.1          1.1          No Change
doc/lessdox/support/lessdox.decl            1.1          1.1          No Change
doc/lessdox/support/lessdox.dtd             1.2          1.2          No Change
doc/lessdox/widgets/.cvsignore              1.3          1.2          
doc/lessdox/widgets/ApplicationShell.3      1.2          1.2          No Change
doc/lessdox/widgets/Composite.3             1.2          1.2          No Change
doc/lessdox/widgets/Constraint.3            1.2          1.2          No Change
doc/lessdox/widgets/Core.3                  1.2          1.2          No Change
doc/lessdox/widgets/Core.sgml               1.2          1.2          No Change
doc/lessdox/widgets/LessTifInternals.3      1.5          1.5          No Change
doc/lessdox/widgets/Makefile.am             1.27         1.26         
doc/lessdox/widgets/Object.3                1.2          1.2          No Change
doc/lessdox/widgets/OverrideShell.3         1.2          1.2          No Change
doc/lessdox/widgets/Rect.3                  1.1          1.1          No Change
doc/lessdox/widgets/Shell.3                 1.2          1.2          No Change
doc/lessdox/widgets/TopLevelShell.3         1.2          1.2          No Change
doc/lessdox/widgets/TransientShell.3        1.2          1.2          No Change
doc/lessdox/widgets/UnNamedObj.3            1.1          1.1          No Change
doc/lessdox/widgets/VendorShell.3           1.1          1.1          No Change
doc/lessdox/widgets/WmShell.3               1.2          1.2          No Change
doc/lessdox/widgets/XmArrowButton.3         1.4          1.4          No Change
doc/lessdox/widgets/XmArrowButtonGadget.3   1.4          1.4          No Change
doc/lessdox/widgets/XmBulletinBoard.3       1.6          1.6          No Change
doc/lessdox/widgets/XmCascadeButton.3       1.4          1.4          No Change
doc/lessdox/widgets/XmCascadeButtonGadget.3 1.4          1.4          No Change
doc/lessdox/widgets/XmClipboard.3           1.4          1.4          No Change
doc/lessdox/widgets/XmComboBox.3            1.4          1.4          No Change
doc/lessdox/widgets/XmCommand.3             1.4          1.4          No Change
doc/lessdox/widgets/XmDesktop.3             1.4          1.4          No Change
doc/lessdox/widgets/XmDialogShell.3         1.5          1.5          No Change
doc/lessdox/widgets/XmDialogShellExt.3      1.4          1.4          No Change
doc/lessdox/widgets/XmDisplay.3             1.4          1.4          No Change
doc/lessdox/widgets/XmDragContext.3         1.4          1.4          No Change
doc/lessdox/widgets/XmDragIcon.3            1.4          1.4          No Change
doc/lessdox/widgets/XmDragOverShell.3       1.4          1.4          No Change
doc/lessdox/widgets/XmDrawingArea.3         1.5          1.5          No Change
doc/lessdox/widgets/XmDrawnButton.3         1.4          1.4          No Change
doc/lessdox/widgets/XmDropSiteManager.3     1.4          1.4          No Change
doc/lessdox/widgets/XmDropTransfer.3        1.4          1.4          No Change
doc/lessdox/widgets/XmFileSelectionBox.3    1.6          1.6          No Change
doc/lessdox/widgets/XmForm.3                1.6          1.5          
doc/lessdox/widgets/XmFrame.3               1.4          1.4          No Change
doc/lessdox/widgets/XmGadget.3              1.4          1.4          No Change
doc/lessdox/widgets/XmGrabShell.3           1.4          1.4          No Change
doc/lessdox/widgets/XmIconGadget.3          1.4          1.4          No Change
doc/lessdox/widgets/XmLabel.3               1.4          1.4          No Change
doc/lessdox/widgets/XmLabelGadget.3         1.4          1.4          No Change
doc/lessdox/widgets/XmList.3                1.4          1.4          No Change
doc/lessdox/widgets/XmMainWindow.3          1.4          1.4          No Change
doc/lessdox/widgets/XmManager.3             1.4          1.4          No Change
doc/lessdox/widgets/XmMenuShell.3           1.4          1.4          No Change
doc/lessdox/widgets/XmMessageBox.3          1.4          1.4          No Change
doc/lessdox/widgets/XmNotebook.3            1.4          1.4          No Change
doc/lessdox/widgets/XmPanedWindow.3         1.4          1.4          No Change
doc/lessdox/widgets/XmPrimitive.3           1.4          1.4          No Change
doc/lessdox/widgets/XmProtocol.3            1.4          1.4          No Change
doc/lessdox/widgets/XmPushButton.3          1.4          1.4          No Change
doc/lessdox/widgets/XmPushButtonGadget.3    1.4          1.4          No Change
doc/lessdox/widgets/XmRowColumn.3           1.4          1.4          No Change
doc/lessdox/widgets/XmSash.3                1.4          1.4          No Change
doc/lessdox/widgets/XmScale.3               1.4          1.4          No Change
doc/lessdox/widgets/XmScreen.3              1.4          1.4          No Change
doc/lessdox/widgets/XmScrollBar.3           1.4          1.4          No Change
doc/lessdox/widgets/XmScrolledWindow.3      1.4          1.4          No Change
doc/lessdox/widgets/XmSelectionBox.3        1.4          1.4          No Change
doc/lessdox/widgets/XmSeparator.3           1.4          1.4          No Change
doc/lessdox/widgets/XmSeparatorGadget.3     1.4          1.4          No Change
doc/lessdox/widgets/XmSpinBox.3             1.4          1.4          No Change
doc/lessdox/widgets/XmString.3              1.1          1.1          No Change
doc/lessdox/widgets/XmTearOffButton.3       1.4          1.4          No Change
doc/lessdox/widgets/XmText.3                1.5          1.5          No Change
doc/lessdox/widgets/XmTextField.3           1.4          1.4          No Change
doc/lessdox/widgets/XmToggleButton.3        1.4          1.4          No Change
doc/lessdox/widgets/XmToggleButtonGadget.3  1.4          1.4          No Change
doc/lessdox/widgets/XmVendorShell.3         1.2          1.2          No Change
doc/lessdox/widgets/XmWorld.3               1.4          1.4          No Change
doc/lessdox/widgets/spit.c                  1.5          1.5          No Change
