2018-04-11  Paul Wise <pabs3@bonedaddy.net>

	* NEWS, configure.ac: Release whowatch 1.8.6

2018-04-11  Paul Wise <pabs3@bonedaddy.net>

	* NEWS: Add missing NEWS for current 1.8.5 release This change was forgotten during the release.

2018-04-11  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Remove OS selction for proc_plugin.c The OS ports now use #ifdefs instead of symlinks.  Fixes: commit a28e15a326901dd2427e7d30be968add8e341935

2018-03-27  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/proc_plugin.c: Improve portability of ticks per
	second calculations Recent Linux versions define the start time from /proc/*/stat as
	sysconf(_SC_CLK_TCK) instead of jiffies.  The Hurd docs also suggest using sysconf(_SC_CLK_TCK) instead of HZ.  See-also:
	https://www.gnu.org/software/hurd/hurd/porting/guidelines.html

2018-03-27  Paul Wise <pabs3@bonedaddy.net>

	* src/proc_plugin.c: p_start_time: return seconds instead of jiffies The Linux kernel doesn't use jiffies any more.  Returning jiffies instead of seconds is a bit of a leaky
	abstraction.

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* src/plist.c, src/screen.c: Advertise keys for SIGTERM instead of
	SIGKILL in tree mode help SIGKILL destroys processes without any chance of cleanup so SIGTERM
	is usually preferable to prevent issues.  SIGKILL is still available for hung processes.

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* src/help.c, whowatch.1: Add help and documentation for sending
	SIGINT, SIGHUP and SIGTERM The relevant code was present, is now working but is undocumented.

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* src/plist.c: Send signals when receiving the keys for SIGINT,
	SIGHUP and SIGTERM These are mentioned in the code but do not work because they are not
	passed to the signal dispatcher.

2017-05-08  Paul Wise <pabs3@bonedaddy.net>

	* src/menu.c, src/plist.c: Add conversion for the key for SIGINT This is documented to work but does not.

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* src/procinfo.c: Check for HAVE_STRUCT_STAT_ST_RDEV before using
	struct stat st_rdev Improves portability to some UNIXen.

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Remove use of AC_TYPE_SIGNAL It is an obsolete autoconf macro and it is unused by the code.  Suggested-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Move AC_OUTPUT arguments to AC_CONFIG_FILES macro
	call Passing args to the AC_OUTPUT autoconf macro is obsolete.  Changes-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Replace AC_STRUCT_ST_RDEV with the appropriate
	AC_CHECK_MEMBERS call The former is an obsolete autoconf macro.  Changes-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Switch from AC_TRY_COMPILE to AC_COMPILE_IFELSE and
	AC_LANG_PROGRAM The former autoconf macro is obsolete.  Changes-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Use correct quoting in autoconf script Results of some autoconf macros need quoting.  This will reduce the diffs when running autoupdate.  Suggested-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Use reduced amount of space in autoconf script This will reduce the diffs when running autoupdate.  Changes-by: autoupdate

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Add autoconf checks for more headers, types and
	functions These headers, types and functions were used but not checked for.  Suggested-by: autoscan

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* src/block.c: Use an unsigned int literal for bit shift Suggested-by: cppcheck: [src/block.c:67]: (error) Shifting signed
	32-bit value by 31 bits is undefined behaviour

2018-03-26  Paul Wise <pabs3@bonedaddy.net>

	* PLUGINS.readme, whowatch.1: Fix typos: appriopriate, analizing Changes-by: codespell -w

2018-03-07  Paul Wise <pabs3@bonedaddy.net>

	* README: Mention the fingerprints of OpenPGP keys used for release
	signing Add myself as primary release manager.  Add Mike Suszycki as backup release manager.

2017-05-08  Paul Wise <pabs3@bonedaddy.net>

	* src/whowatch.h: Clean up function declarations Change incorrect and missing translation unit names.  Add declarations for definitions with no corresponding declaration.  Remove declarations with no corresponding definition.  Remove declarations not used outside their definition's translation
	unit.  Fixes: GCC warnings: whowatch.c: In function ‘info_wdgt’: whowatch.c:300:2: warning:
	  implicit declaration of function ‘info_reg’
	  [-Wimplicit-function-declaration] info_reg(w);   ^~~~~~~~ plist.c: In function ‘getprocbyname’: plist.c:194:2: warning:
	  implicit declaration of function ‘scr_crsr_jmp’
	  [-Wimplicit-function-declaration] scr_crsr_jmp(w, p->line);   ^~~~~~~~~~~~ ulist.c: In function ‘user_search’: ulist.c:268:2: warning:
	  implicit declaration of function ‘scr_crsr_jmp’
	  [-Wimplicit-function-declaration] scr_crsr_jmp(w, u->line);   ^~~~~~~~~~~~

2017-05-08  Paul Wise <pabs3@bonedaddy.net>

	* AUTHORS, ChangeLog.old, NEWS, PLUGINS.readme, README,
	src/acconfig.h, src/block.c, src/exti.c, src/help.c, src/list.h,
	src/menu.c, src/plist.c, src/pluglib.c, src/proc_plugin.c,
	src/procinfo.c, src/proctree.c, src/screen.c, src/ulist.c,
	src/ulist.h, src/user_plugin.c, src/var.h, src/wdgts.c,
	src/whowatch.c, src/whowatch.h, whowatch.1: Clean up whitespace Strip trailing whitespace, it gets highlighted by git.  Replace inconsistent indentation with tab characters, highlighted by
	editors.  Clean up line-internal whitespace where inconsistent.  Consistently put tab characters after // but before commented lines.  Reformat some case/default statements to clean up whitespace.

2017-05-08  Paul Wise <pabs3@bonedaddy.net>

	* src/plist.c: Use SIGKILL/SIGHUP/SIGTERM instead of the numerical
	equivalents This makes the code easier to read for folks not aware of signal
	numbers.

2015-09-05  Paul Wise <pabs3@bonedaddy.net>

	* src/proc_plugin.c: Use NULL instead of 0 in calls to
	read_proc_file read_proc_file takes pointers not integers.

2015-05-10  Paul Wise <pabs3@bonedaddy.net>

	* src/plist.c: Use the correct type when calling getprocbyname.  getprocbyname takes an int not u32

2017-01-15  Paul Wise <pabs3@bonedaddy.net>

	* ChangeLog.old, NEWS, PLUGINS.readme, README, src/list.h,
	src/screen.c, src/ulist.c: Fix typos: loggin, suport, ouput,
	initalize, informations, linux, chatacters Fix some associated grammar too.  Suggested-by: spellintian --picky

2017-01-15  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Switch github issues link to https This is more secure for first-time github visitors.  Suggested-by: check-all-the-things

2017-01-15  Paul Wise <pabs3@bonedaddy.net>

	* ChangeLog.old: Remove link to Webmotion Inc The website is long gone.

2017-01-15  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/menu.c: Fix typos: choosen, proccess Changes-by: codespell -w

2017-01-15  Paul Wise <pabs3@bonedaddy.net>

	* src/screen.c: Restore values of terminal status information on
	exit Without this some other programs using the terminal may fail:   $ whowatch   $ nano   Received SIGHUP or SIGTERM   $ cat   cat: -: Resource temporarily unavailable Thanks to #debian-devel for the debugging suggestions.

2016-03-02  Richard Fearn <richardfearn@gmail.com>

	* COPYING: Update FSF address in COPYING file Update to use the correct FSF address, by replacing the COPYING file
	with:   http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt

2014-05-27  Paul Wise <pabs3@bonedaddy.net>

	* TODO: Add FreeBSD porting TODO items

2014-05-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/proc_plugin.c: Port the HZ handling to BSD

2014-05-26  Paul Wise <pabs3@bonedaddy.net>

	* src/proc_plugin.c: Fix the CPU info on FreeBSD

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* src/whowatch.c: Use the main_periodic function instead, periodic
	does not exist

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* src/whowatch.c: Use the getkey function instead, read_key does not
	exist

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* src/list.h, src/plist.c, src/proc_plugin.c, src/ulist.h: Rename
	LIST_HEAD to DECL_LIST_HEAD to avoid conflict with system one on BSD

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* src/procinfo.h: Check for the FreeBSD kernel as well as FreeBSD

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac: Properly record the availability of sysctl()

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/procinfo.c, src/proctree.c, src/proctree.h: 
	Check for correct members of kinfo_proc since it differs in the BSD
	family

2013-11-23  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/procinfo.c: sysctl takes a pointer to size_t not
	int.

2014-05-26  Paul Wise <pabs3@bonedaddy.net>

	* configure.ac, src/Makefile.am, src/dialects/bsd/proc_plugin.c,
	src/{dialects/linux => }/proc_plugin.c: Move proc_plugin.c out of
	dialects, port is only an #ifdef.

2014-05-26  Paul Wise <pabs3@bonedaddy.net>

	* src/Makefile.am, src/dialects/linux/procinfo.c, src/{dialects/bsd
	=> }/procinfo.c: Move procinfo.c out of dialects, port differences
	are only #ifdefs.

2013-07-15  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/bsd/proc_plugin.c: Update BSD with changes to Linux
	port from 'Fixed compiler warnings (mostly casting)' Original-Commit: b9f67a330dd5b234480d1901700c81ce2b13a0b7

2013-01-10  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/bsd/proc_plugin.c: Update BSD with changes to Linux
	port from very minor cleanups Original-Commit: c6f8e784a7cc5b4105e536a4260dbbd4c2bb83d1

2006-03-19  Michal Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/bsd/procinfo.c: Update BSD with changes to Linux port
	from whowatch-1.8.3.tar.gz Original-Commit: f5dae8fb907a9d39111e95150bf5e50e0d82a261

2006-03-16  Michal Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/bsd/proc_plugin.c, src/dialects/bsd/procinfo.c: 
	Update BSD with changes to Linux port from whowatch-1.8.tar.gz Original-Commit: 559742a2a7c8403162f83ff4704355e68df256b8

2006-02-21  Michal Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/bsd/proc_plugin.c, src/dialects/bsd/procinfo.c: 
	Update BSD with changes to Linux port from whowatch-1.7.tar.gz Original-Commit: 7fcb9e2591fce2f667cdde315c75e205f6f43ca2

2014-05-26  Paul Wise <pabs3@bonedaddy.net>

	* src/Makefile.am, src/dialects/linux/procinfo.h, src/{dialects/bsd
	=> }/procinfo.h: Move procinfo.h out of dialects since it is
	identical between ports.

2013-10-07  Paul Wise <pabs3@bonedaddy.net>

	* .gitignore: Ignore a new autotools related file

2013-10-07  Mike Suszycki <mt_suszycki@yahoo.com>

	* configure.ac, src/whowatch.c: fixed TIMEOUT value which caused
	whowatch to update user/process list every ~1.5h not 3 sec

2013-10-07  Mike Suszycki <mt_suszycki@yahoo.com>

	* Makefile.am: Revert "Fix ChangeLog generation" This reverts commit f485c445e05179a1f6ffcc8f576801d6fef5be9a.

2013-08-12  Mike Suszycki <mt_suszycki@yahoo.com>

	* Makefile.am: Fix ChangeLog generation

2013-08-12  Mike Suszycki <mt_suszycki@yahoo.com>

	* Makefile.am: Fix ChangeLog generation

2013-08-07  Mike Suszycki <mt_suszycki@yahoo.com>

	* NEWS: added NEWS file

2013-07-29  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/plist.c, src/ulist.c, src/wdgts.c: fixing compiler warnings
	(cast from pointer to integer of different size)

2013-07-15  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/plist.c: increased max width of line numbering column to 4 and
	changed its color

2013-07-15  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/exti.c, src/plist.c: Added 'l' key to the process tree view.
	It shows the line numbers in the first column.  Hopefully it is
	useful, especially if there are many processes in the tree

2013-07-15  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/linux/proc_plugin.c, src/plist.c, src/ulist.c,
	src/wdgts.c: Fixed compiler warnings (mostly casting)

2013-06-16  Paul Wise <pabs3@bonedaddy.net>

	* src/Makefile.am: Prevent prebuilt .o files from ending up in the
	tarball

2013-06-16  Paul Wise <pabs3@bonedaddy.net>

	* Makefile.am: Also distribute ChangeLog.old in the source tarball

2013-06-16  Paul Wise <pabs3@bonedaddy.net>

	* Makefile.am: Also distribute PLUGINS.readme in the source tarball

2013-01-15  Paul Wise <pabs3@bonedaddy.net>

	* .gitignore: Ignore some generated and copied-in files

2013-01-15  Paul Wise <pabs3@bonedaddy.net>

	* ChangeLog => ChangeLog.old, INSTALL, Makefile.am, Makefile.in,
	VERSION, configure.in => configure.ac, src/Makefile.am,
	src/Makefile.in, src/proc_plugin.c, src/procinfo.c, src/procinfo.h: 
	Fix up and modernise the build system.

2013-01-10  Mike Suszycki <mt_suszycki@yahoo.com>

	* src/dialects/linux/proc_plugin.c, src/wdgts.c, src/whowatch.c: 
	very minor cleanups

2013-01-09  Johnny A. Solbu <solbu@mandriva.org>

	* src/Makefile.in: support for DESTDIR

2012-12-21  Paul Wise <pabs@debian.org>

	* configure.in: fix FTBFS due to newer autoconf version

2012-12-21  Paul Wise <pabs@debian.org>

	* configure.in: drop dlopen check since whowatch does not use it

2012-09-18  Daniel Echeverry <epsilon77@gmail.com>

	* whowatch.1: Fix a typo in the manual page

2013-01-14  Paul Wise <pabs3@bonedaddy.net>

	* tar2git: Drop script used to import the tarballs since it is not
	needed any more

2006-03-19  Michal Suszycki <mt_suszycki@yahoo.com>

	* TODO, src/dialects/linux/procinfo.c, src/plist.c, src/proctree.c,
	src/proctree.h, src/screen.c, src/ulist.c, src/wdgts.c,
	src/whowatch.c, src/whowatch.h: Import whowatch-1.8.3.tar.gz These files have been deleted: configure install-sh src/config.h.in src/core
	src/dialects/linux/procinfo.o src/dialects/linux/proc_plugin.o
	src/tags

2006-03-16  Michal Suszycki <mt_suszycki@yahoo.com>

	* AUTHORS, TODO, src/Makefile.in, src/block.c,
	src/dialects/linux/proc_plugin.c, src/dialects/linux/procinfo.c,
	src/exti.c, src/help.c, src/info_box.c, src/input_box.c,
	src/list.h, src/menu.c, src/menu_hooks.c, src/menu_hooks.h,
	src/owner.c, src/plist.c, src/pluglib.c, src/pluglib.h,
	src/process.c, src/screen.c, src/search.c, src/subwin.c,
	src/subwin.h, src/test.c, src/{user.c => ulist.c}, src/ulist.h,
	src/user_plugin.c, src/var.h, src/wdgts.c, src/whowatch.c,
	src/whowatch.h: Import whowatch-1.8.tar.gz These files have been deleted: configure install-sh src/config.h.in src/dialects/linux/procinfo.o
	src/dialects/linux/proc_plugin.o src/tags

2006-02-21  Michal Suszycki <mt_suszycki@yahoo.com>

	* INSTALL, src/Makefile.in, src/block.c,
	src/dialects/linux/proc_plugin.c, src/dialects/linux/procinfo.c,
	src/help.c, src/info_box.c, src/input_box.c,
	src/input_box.c.backup, src/menu.c, src/menu_hooks.c,
	src/menu_hooks.h, src/process.c, src/proctree.c, src/screen.c,
	src/search.c, src/subwin.c, src/term.c, src/user.c,
	src/user_plugin.c, src/var.h, src/whowatch.c, src/whowatch.h: Import
	whowatch-1.7.tar.gz These files have been deleted: configure install-sh src/config.h.in src/dialects/linux/procinfo.o
	src/dialects/linux/proc_plugin.o src/tags

2001-06-13  Michal Suszycki <mt_suszycki@yahoo.com>

	* AUTHORS, ChangeLog, INSTALL, KEYS, Makefile.in, NEWS,
	PLUGINS.readme, README, TODO, VERSION, configure.in, process.c,
	procinfo.c, screen.c, screen.c.patched, src/Makefile.in, acconfig.h
	=> src/acconfig.h, src/block.c, src/dialects/bsd/proc_plugin.c,
	src/dialects/bsd/procinfo.c, procinfo.h =>
	src/dialects/bsd/procinfo.h, src/dialects/linux/proc_plugin.c,
	src/dialects/linux/procinfo.c, src/dialects/linux/procinfo.h,
	src/help.c, src/info_box.c, src/input_box.c,
	src/input_box.c.backup, src/kbd.c, src/kbd.h, src/list.h,
	src/menu.c, src/menu_hooks.c, src/menu_hooks.h, owner.c =>
	src/owner.c, src/pluglib.c, src/pluglib.h, src/proc_plugin.c,
	src/process.c, src/procinfo.c, src/procinfo.h, proctree.c =>
	src/proctree.c, proctree.h => src/proctree.h, src/screen.c,
	src/search.c, src/subwin.c, src/subwin.h, src/term.c, src/test.c,
	src/user.c, src/user_plugin.c, src/whowatch.c, src/whowatch.h,
	whowatch.1, whowatch.c, whowatch.c.backup, whowatch.c.patched,
	whowatch.h, whowatch.h.patched, whowatch.patch: Import
	whowatch-1.6.0.tar.gz These files have been deleted: configure install-sh src/config.h.in src/dialects/linux/procinfo.o
	src/dialects/linux/proc_plugin.o

2001-03-13  Michal Suszycki <mt_suszycki@yahoo.com>

	* VERSION, procinfo.c, screen.c, whowatch.c: Import
	whowatch-1.5.3.1.tar.gz These files have been deleted: config.h.in configure install-sh

2001-03-12  Michal Suszycki <mt_suszycki@yahoo.com>

	* procinfo.c, screen.c, whowatch.c, whowatch.c.backup, whowatch.h: 
	Import whowatch-1.5.2.tar.gz These files have been deleted: config.h.in configure install-sh

2001-03-06  Michal Suszycki <mt_suszycki@yahoo.com>

	* ChangeLog, README, VERSION, process.c, procinfo.c, screen.c,
	screen.c.patched, whowatch.c, whowatch.c.patched, whowatch.h,
	whowatch.h.patched, whowatch.patch: Import whowatch-1.5.1.tar.gz These files have been deleted: config.h.in configure install-sh

2000-06-12  Michal Suszycki <mt_suszycki@yahoo.com>

	* ChangeLog, Makefile.in, NEWS, TODO, configure.in, process.c,
	procinfo.c, procinfo.h, screen.c, whowatch.1, whowatch.c,
	whowatch.h: Import whowatch-1.4.tar.gz These files have been deleted: config.h.in configure install-sh

2000-06-06  Michal Suszycki <mt_suszycki@yahoo.com>

	* ChangeLog, KEYS, process.c, procinfo.c, proctree.h, screen.c,
	whowatch.1: Import whowatch-1.4-beta6.tar.gz These files have been deleted: config.h.in configure install-sh

2000-05-25  Michal Suszycki <mt_suszycki@yahoo.com>

	* procinfo.c, proctree.c, proctree.h, screen.c, whowatch.c: Import
	whowatch-1.4-beta5.tar.gz These files have been deleted: config.h.in configure install-sh

2000-05-18  Michal Suszycki <mt_suszycki@yahoo.com>

	* process.c, process.c.orig, proctree.c, proctree.h, whowatch.c: 
	Import whowatch-3.diff

2000-05-09  Michal Suszycki <mt_suszycki@yahoo.com>

	* process.c, process.c.orig, proctree.c, proctree.h: Import
	whowatch.diff

2000-05-11  Michal Suszycki <mt_suszycki@yahoo.com>

	* process.c, proctree.c, proctree.h, whowatch.c: Import
	whowatch-1.4-beta4.tar.gz These files have been deleted: config.h.in configure install-sh

2000-05-24  Michal Suszycki <mt_suszycki@yahoo.com>

	* ChangeLog, KEYS, README, TODO, process.c, procinfo.c, proctree.c,
	proctree.h, screen.c, whowatch.1, whowatch.c: Import
	whowatch-1.4-beta4-jb3.tar.gz These files have been deleted: config.cache config.h config.h.in config.log config.status configure
	install-sh Makefile owner.o process.o procinfo.o proctree.o screen.o
	whowatch whowatch.o

2000-04-26  Michal Suszycki <mt_suszycki@yahoo.com>

	* ChangeLog, KEYS, Makefile.in, NEWS, acconfig.h, configure.in,
	process.c, procinfo.c, procinfo.h, screen.c, whowatch.c, whowatch.h: 
	Import whowatch-1.4-beta3.tar.gz These files have been deleted: config.h.in configure install-sh

2000-04-13  Michal Suszycki <mt_suszycki@yahoo.com>

	* KEYS, configure.in, process.c, procinfo.c, screen.c, whowatch.1,
	whowatch.c, whowatch.h: Import whowatch-1.4-beta2.tar.gz These files have been deleted: config.h.in configure install-sh

2000-04-12  Michal Suszycki <mt_suszycki@yahoo.com>

	* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile, Makefile.in,
	NEWS, README, TODO, acconfig.h, configure.in, proc.c, process.c,
	procinfo.c, proctree.c, proctree.h, screen.c, whowatch.1,
	whowatch.c, whowatch.h: Import whowatch-1.4-beta1.tar.gz These files have been deleted: config.h.in configure install-sh

2000-02-27  Michal Suszycki <mt_suszycki@yahoo.com>

	* README, whowatch.1, whowatch.c: Import whowatch-1.3.1.tar.gz

1999-09-06  Michal Suszycki <mt_suszycki@yahoo.com>

	* KEYS, Makefile, README, TODO, owner.c, proc.c, process.c,
	proctree.c, proctree.h, screen.c, whowatch.1, whowatch.c,
	whowatch.h: Import whowatch-1.3.tar.gz

1999-07-30  Michal Suszycki <mt_suszycki@yahoo.com>

	* README, proc.c, proctree.c, screen.c, whowatch.1, whowatch.c,
	whowatch.h: Import whowatch-1.2.tar.gz

1999-07-28  Michal Suszycki <mt_suszycki@yahoo.com>

	* KEYS, Makefile, README, proc.c, proctree.c, screen.c, whowatch.c,
	whowatch.h: Import whowatch-1.2-beta.tar.gz

1999-07-27  Michal Suszycki <mt_suszycki@yahoo.com>

	* whowatch.c: Import whowatch-1.1.1.diff

1999-07-24  Michal Suszycki <mt_suszycki@yahoo.com>

	* COPYING, KEYS, Makefile, README, proc.c, proctree.c, proctree.h,
	screen.c, whowatch.c, whowatch.h: Import whowatch-1.1.tar.gz

2013-01-14  Paul Wise <pabs3@bonedaddy.net>

	* Add script used to import the tarballs

