This file contains patches to V source code. This
BUG file was started with V version 1.06.

--------------------------------------------------------
Problems with g++ 2.7.x compilers: some versions don't
have the include hierarchy set properly, and some
V code doesn't compile. Removing the [extern "C"]
statements surrounding the X11 includes in
[v/includewx/v/v_defs.h] seems to fix this.
--------------------------------------------------------


Fix the following bugs in Versions of V
1.05 and earlier:

--------------------------------------------------------
Bug in file v/srcx/vlistc.cxx:		(2/29/96)

  In the function:  void vListCmd::JumpProcCB(int percent)

  Add:
    if (_scale == 0)		// nothing to change
	return;
  Before the line:
    newMap = percent / _scale;
--------------------------------------------------------
