summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-09-17 04:14:50 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-09-17 04:14:50 +0000
commit90e9edeb57b7efe3b1aba0ddeda30341b7e9fd0c (patch)
tree11483598ad9b90bf8b2be3421ce004a559028779
parent0b81d39237f399c737f2a448986f6568f88ed1f8 (diff)
ncurses-4.2-980912
-rw-r--r--lib/libcurses/curses.h4
-rw-r--r--lib/libcurses/curses.priv.h8
-rw-r--r--lib/libcurses/lib_doupdate.c5
-rw-r--r--lib/libcurses/lib_endwin.c13
-rw-r--r--lib/libcurses/lib_mouse.c6
-rw-r--r--lib/libcurses/lib_mvcur.c18
-rw-r--r--lib/libcurses/lib_set_term.c32
-rw-r--r--lib/libform/form.3tbl6
-rw-r--r--lib/libform/form_cursor.36
-rw-r--r--lib/libform/form_data.36
-rw-r--r--lib/libform/form_field.36
-rw-r--r--lib/libform/form_field_attributes.36
-rw-r--r--lib/libform/form_field_buffer.36
-rw-r--r--lib/libform/form_field_info.36
-rw-r--r--lib/libform/form_field_just.36
-rw-r--r--lib/libform/form_field_new.36
-rw-r--r--lib/libform/form_field_opts.36
-rw-r--r--lib/libform/form_field_userptr.36
-rw-r--r--lib/libform/form_fieldtype.36
-rw-r--r--lib/libform/form_hook.36
-rw-r--r--lib/libform/form_new.36
-rw-r--r--lib/libform/form_new_page.36
-rw-r--r--lib/libform/form_opts.36
-rw-r--r--lib/libform/form_page.36
-rw-r--r--lib/libform/form_post.36
-rw-r--r--lib/libform/form_requestname.36
-rw-r--r--lib/libform/form_userptr.36
-rw-r--r--lib/libform/form_win.36
-rw-r--r--lib/libmenu/menu.3tbl6
-rw-r--r--lib/libmenu/menu_attribs.36
-rw-r--r--lib/libmenu/menu_cursor.36
-rw-r--r--lib/libmenu/menu_format.36
-rw-r--r--lib/libmenu/menu_hook.36
-rw-r--r--lib/libmenu/menu_items.36
-rw-r--r--lib/libmenu/menu_mark.36
-rw-r--r--lib/libmenu/menu_new.36
-rw-r--r--lib/libmenu/menu_opts.36
-rw-r--r--lib/libmenu/menu_post.36
-rw-r--r--lib/libmenu/menu_requestname.36
-rw-r--r--lib/libmenu/menu_spacing.36
-rw-r--r--lib/libmenu/menu_userptr.36
-rw-r--r--lib/libmenu/menu_win.36
-rw-r--r--lib/libmenu/mitem_current.36
-rw-r--r--lib/libmenu/mitem_name.36
-rw-r--r--lib/libmenu/mitem_new.36
-rw-r--r--lib/libmenu/mitem_opts.36
-rw-r--r--lib/libmenu/mitem_userptr.36
-rw-r--r--lib/libmenu/mitem_visible.36
-rw-r--r--lib/libpanel/panel.c4
49 files changed, 178 insertions, 158 deletions
diff --git a/lib/libcurses/curses.h b/lib/libcurses/curses.h
index 9f2b76c3c97..6ff2b1fac4d 100644
--- a/lib/libcurses/curses.h
+++ b/lib/libcurses/curses.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: curses.h,v 1.11 1998/09/13 19:16:24 millert Exp $ */
+/* $OpenBSD: curses.h,v 1.12 1998/09/17 04:14:29 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -50,7 +50,7 @@
/* These are defined only in curses.h, and are used for conditional compiles */
#define NCURSES_VERSION_MAJOR 4
#define NCURSES_VERSION_MINOR 2
-#define NCURSES_VERSION_PATCH 980905
+#define NCURSES_VERSION_PATCH 980912
/* This is defined in more than one ncurses header, for identification */
#undef NCURSES_VERSION
diff --git a/lib/libcurses/curses.priv.h b/lib/libcurses/curses.priv.h
index 1868afcf667..4c95727e76f 100644
--- a/lib/libcurses/curses.priv.h
+++ b/lib/libcurses/curses.priv.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: curses.priv.h,v 1.8 1998/09/13 19:16:25 millert Exp $ */
+/* $OpenBSD: curses.priv.h,v 1.9 1998/09/17 04:14:30 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -35,7 +35,7 @@
/*
- * $From: curses.priv.h,v 1.109 1998/09/05 22:10:02 tom Exp $
+ * $From: curses.priv.h,v 1.110 1998/09/12 22:50:21 tom Exp $
*
* curses.priv.h
*
@@ -663,6 +663,10 @@ extern void _nc_synchook(WINDOW *win);
extern void _nc_update_screensize(void);
#endif
+#define NC_BUFFERED(flag) \
+ if ((SP->_setbuf == 0) != flag) \
+ _nc_set_buffer(SP->_ofp, flag)
+
/*
* On systems with a broken linker, define 'SP' as a function to force the
* linker to pull in the data-only module with 'SP'.
diff --git a/lib/libcurses/lib_doupdate.c b/lib/libcurses/lib_doupdate.c
index 1c1ee616eb2..e391e6766e5 100644
--- a/lib/libcurses/lib_doupdate.c
+++ b/lib/libcurses/lib_doupdate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lib_doupdate.c,v 1.9 1998/09/13 19:16:27 millert Exp $ */
+/* $OpenBSD: lib_doupdate.c,v 1.10 1998/09/17 04:14:30 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -77,7 +77,7 @@
#include <term.h>
-MODULE_ID("$From: lib_doupdate.c,v 1.103 1998/08/15 23:34:47 tom Exp $")
+MODULE_ID("$From: lib_doupdate.c,v 1.104 1998/09/12 22:50:39 tom Exp $")
/*
* This define controls the line-breakout optimization. Every once in a
@@ -521,6 +521,7 @@ struct tms before, after;
T(("coming back from shell mode"));
reset_prog_mode();
+ NC_BUFFERED(TRUE);
_nc_mvcur_resume();
_nc_screen_resume();
SP->_mouse_resume(SP);
diff --git a/lib/libcurses/lib_endwin.c b/lib/libcurses/lib_endwin.c
index d8a15194c0a..e6b9eb5a29b 100644
--- a/lib/libcurses/lib_endwin.c
+++ b/lib/libcurses/lib_endwin.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lib_endwin.c,v 1.5 1998/07/23 21:18:43 millert Exp $ */
+/* $OpenBSD: lib_endwin.c,v 1.6 1998/09/17 04:14:30 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -44,7 +44,7 @@
#include <curses.priv.h>
#include <term.h>
-MODULE_ID("$From: lib_endwin.c,v 1.14 1998/02/11 12:13:54 tom Exp $")
+MODULE_ID("$From: lib_endwin.c,v 1.15 1998/09/12 22:50:25 tom Exp $")
int
endwin(void)
@@ -52,10 +52,11 @@ endwin(void)
T((T_CALLED("endwin()")));
if (SP) {
- SP->_endwin = TRUE;
- SP->_mouse_wrap(SP);
- _nc_screen_wrap();
- _nc_mvcur_wrap(); /* wrap up cursor addressing */
+ SP->_endwin = TRUE;
+ SP->_mouse_wrap(SP);
+ _nc_screen_wrap();
+ _nc_mvcur_wrap(); /* wrap up cursor addressing */
+ NC_BUFFERED(FALSE);
}
returnCode(reset_shell_mode());
diff --git a/lib/libcurses/lib_mouse.c b/lib/libcurses/lib_mouse.c
index 90cf5673239..ae2909174e3 100644
--- a/lib/libcurses/lib_mouse.c
+++ b/lib/libcurses/lib_mouse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lib_mouse.c,v 1.6 1998/09/13 19:16:27 millert Exp $ */
+/* $OpenBSD: lib_mouse.c,v 1.7 1998/09/17 04:14:30 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -422,8 +422,8 @@ static bool _nc_mouse_parse(int runcount)
if (runcount == 1)
{
TR(MY_TRACE, ("_nc_mouse_parse: returning simple mouse event %s at slot %ld",
- _tracemouse(prev),
- (long) (prev - events)));
+ _tracemouse(prev),
+ (long) (prev - events)));
return (prev->id >= 0)
? ((prev->bstate & eventmask) ? TRUE : FALSE)
: FALSE;
diff --git a/lib/libcurses/lib_mvcur.c b/lib/libcurses/lib_mvcur.c
index 25152108369..adb0da65e20 100644
--- a/lib/libcurses/lib_mvcur.c
+++ b/lib/libcurses/lib_mvcur.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lib_mvcur.c,v 1.10 1998/07/23 21:19:03 millert Exp $ */
+/* $OpenBSD: lib_mvcur.c,v 1.11 1998/09/17 04:14:31 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -155,7 +155,7 @@
#include <term.h>
#include <ctype.h>
-MODULE_ID("$From: lib_mvcur.c,v 1.50 1998/02/11 12:13:56 tom Exp $")
+MODULE_ID("$From: lib_mvcur.c,v 1.52 1998/09/12 23:03:26 tom Exp $")
#define STRLEN(s) (s != 0) ? strlen(s) : 0
@@ -952,17 +952,7 @@ int main(int argc GCC_UNUSED, char *argv[] GCC_UNUSED)
baudrate();
_nc_mvcur_init();
-#if HAVE_SETVBUF || HAVE_SETBUFFER
- /*
- * Undo the effects of our optimization hack, otherwise our interactive
- * prompts don't flush properly.
- */
-#if HAVE_SETVBUF
- (void) setvbuf(SP->_ofp, malloc(BUFSIZ), _IOLBF, BUFSIZ);
-#elif HAVE_SETBUFFER
- (void) setbuffer(SP->_ofp, malloc(BUFSIZ), BUFSIZ);
-#endif
-#endif /* HAVE_SETVBUF || HAVE_SETBUFFER */
+ NC_BUFFERED(FALSE);
(void) puts("The mvcur tester. Type ? for help");
@@ -1059,7 +1049,7 @@ int main(int argc GCC_UNUSED, char *argv[] GCC_UNUSED)
}
else if (buf[0] == 'i')
{
- dump_init((char *)NULL, F_TERMINFO, S_TERMINFO, 70, 0);
+ dump_init((char *)NULL, F_TERMINFO, S_TERMINFO, 70, 0, FALSE);
dump_entry(&cur_term->type, 0, 0);
putchar('\n');
}
diff --git a/lib/libcurses/lib_set_term.c b/lib/libcurses/lib_set_term.c
index e64708d4b7f..10c913fc3ca 100644
--- a/lib/libcurses/lib_set_term.c
+++ b/lib/libcurses/lib_set_term.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lib_set_term.c,v 1.6 1998/07/23 21:19:22 millert Exp $ */
+/* $OpenBSD: lib_set_term.c,v 1.7 1998/09/17 04:14:31 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -46,7 +46,7 @@
#include <term.h> /* cur_term */
-MODULE_ID("$From: lib_set_term.c,v 1.39 1998/05/30 23:44:18 Todd.Miller Exp $")
+MODULE_ID("$From: lib_set_term.c,v 1.40 1998/09/12 23:16:41 tom Exp $")
/*
* If the output file descriptor is connected to a tty (the typical case) it
@@ -76,6 +76,30 @@ MODULE_ID("$From: lib_set_term.c,v 1.39 1998/05/30 23:44:18 Todd.Miller Exp $")
* performed on the stream." (ISO 7.9.5.6.)
*
* Grrrr...
+ *
+ * On a lighter note, many implementations do in fact allow an application to
+ * reset the buffering after it has been written to. We try to do this because
+ * otherwise we leave stdout in buffered mode after endwin() is called. (This
+ * also happens with SVr4 curses).
+ *
+ * There are pros/cons:
+ *
+ * con:
+ * There is no guarantee that we can reestablish buffering once we've
+ * dropped it.
+ *
+ * We _may_ lose data if the implementation does not coordinate this with
+ * fflush.
+ *
+ * pro:
+ * An implementation is more likely to refuse to change the buffering than
+ * to do it in one of the ways mentioned above.
+ *
+ * The alternative is to have the application try to change buffering
+ * itself, which is certainly no improvement.
+ *
+ * Just in case it does not work well on a particular system, the calls to
+ * change buffering are all via the macro NC_BUFFERED.
*/
void _nc_set_buffer(FILE *ofp, bool buffered)
{
@@ -95,9 +119,9 @@ void _nc_set_buffer(FILE *ofp, bool buffered)
#if HAVE_SETVBUF
#ifdef SETVBUF_REVERSED /* pre-svr3? */
- (void) setvbuf(ofp, buf_ptr, buf_len, buf_len ? _IOFBF : _IONBF);
+ (void) setvbuf(ofp, buf_ptr, buf_len, buf_len ? _IOFBF : _IOLBF);
#else
- (void) setvbuf(ofp, buf_ptr, buf_len ? _IOFBF : _IONBF, buf_len);
+ (void) setvbuf(ofp, buf_ptr, buf_len ? _IOFBF : _IOLBF, buf_len);
#endif
#elif HAVE_SETBUFFER
(void) setbuffer(ofp, buf_ptr, (int)buf_len);
diff --git a/lib/libform/form.3tbl b/lib/libform/form.3tbl
index 27d3c0233cd..d796b030ab2 100644
--- a/lib/libform/form.3tbl
+++ b/lib/libform/form.3tbl
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form.3tbl,v 1.2 1998/07/24 02:36:56 millert Exp $
+'\" t
+.\" $OpenBSD: form.3tbl,v 1.3 1998/09/17 04:14:33 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-'\" t
-.\" $From: form.3x,v 1.9 1998/03/11 21:12:53 juergen Exp $
+.\" $From: form.3x,v 1.10 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form 3 ""
.SH NAME
\fBform\fR - curses extension for programming forms
diff --git a/lib/libform/form_cursor.3 b/lib/libform/form_cursor.3
index cf055b4b1f7..b6c088e8a7d 100644
--- a/lib/libform/form_cursor.3
+++ b/lib/libform/form_cursor.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_cursor.3,v 1.4 1998/07/24 02:36:59 millert Exp $
+'\" t
+.\" $OpenBSD: form_cursor.3,v 1.5 1998/09/17 04:14:34 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_cursor.3x,v 1.2 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_cursor.3x,v 1.3 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_cursor 3 ""
.SH NAME
\fBform_cursor\fR - position a form window cursor
diff --git a/lib/libform/form_data.3 b/lib/libform/form_data.3
index ed59a61a509..ebc62d10ecf 100644
--- a/lib/libform/form_data.3
+++ b/lib/libform/form_data.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_data.3,v 1.7 1998/08/29 21:12:22 deraadt Exp $
+'\" t
+.\" $OpenBSD: form_data.3,v 1.8 1998/09/17 04:14:34 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_data.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_data.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_data 3 ""
.SH NAME
\fBform_data\fR - test for off-screen data in given forms
diff --git a/lib/libform/form_field.3 b/lib/libform/form_field.3
index a784e8bd49d..9c0d192dfe8 100644
--- a/lib/libform/form_field.3
+++ b/lib/libform/form_field.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field.3,v 1.5 1998/07/24 02:37:03 millert Exp $
+'\" t
+.\" $OpenBSD: form_field.3,v 1.6 1998/09/17 04:14:34 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field 3 ""
.SH NAME
\fBform_field\fR - make and break connections between fields and forms
diff --git a/lib/libform/form_field_attributes.3 b/lib/libform/form_field_attributes.3
index a97a655c664..a6da669c3ba 100644
--- a/lib/libform/form_field_attributes.3
+++ b/lib/libform/form_field_attributes.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_attributes.3,v 1.5 1998/07/24 02:37:04 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_attributes.3,v 1.6 1998/09/17 04:14:34 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_attributes.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_attributes.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_attributes 3 ""
.SH NAME
\fBform_field_attributes\fR - color and attribute control for form fields
diff --git a/lib/libform/form_field_buffer.3 b/lib/libform/form_field_buffer.3
index 464866d1257..ab65dae541a 100644
--- a/lib/libform/form_field_buffer.3
+++ b/lib/libform/form_field_buffer.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_buffer.3,v 1.6 1998/07/24 02:37:05 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_buffer.3,v 1.7 1998/09/17 04:14:34 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_buffer.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_buffer.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_buffer 3 ""
.SH NAME
\fBform_field_buffer\fR - field buffer control
diff --git a/lib/libform/form_field_info.3 b/lib/libform/form_field_info.3
index 1bf74f698ca..027a6e2f73c 100644
--- a/lib/libform/form_field_info.3
+++ b/lib/libform/form_field_info.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_info.3,v 1.5 1998/07/24 02:37:06 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_info.3,v 1.6 1998/09/17 04:14:35 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_info.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_info.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_info 3 ""
.SH NAME
\fBform_field_info\fR - retrieve field characteristics
diff --git a/lib/libform/form_field_just.3 b/lib/libform/form_field_just.3
index 74ce7c7afe6..2d248a72b51 100644
--- a/lib/libform/form_field_just.3
+++ b/lib/libform/form_field_just.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_just.3,v 1.5 1998/07/24 02:37:07 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_just.3,v 1.6 1998/09/17 04:14:35 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_just.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_just.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_just 3 ""
.SH NAME
\fBform_field_just\fR - retrieve field characteristics
diff --git a/lib/libform/form_field_new.3 b/lib/libform/form_field_new.3
index 355942c310c..a69e3fc6798 100644
--- a/lib/libform/form_field_new.3
+++ b/lib/libform/form_field_new.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_new.3,v 1.6 1998/07/24 02:37:08 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_new.3,v 1.7 1998/09/17 04:14:35 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.'" $From: form_field_new.3x,v 1.7 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.'" $From: form_field_new.3x,v 1.8 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_new 3 ""
.SH NAME
\fBform_field_new\fR - create and destroy form fields
diff --git a/lib/libform/form_field_opts.3 b/lib/libform/form_field_opts.3
index f7de35c89e7..4f6d474337b 100644
--- a/lib/libform/form_field_opts.3
+++ b/lib/libform/form_field_opts.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_opts.3,v 1.5 1998/07/24 02:37:10 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_opts.3,v 1.6 1998/09/17 04:14:35 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_opts.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_opts.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_opts 3 ""
.SH NAME
\fBform_field_opts\fR - set and get field options
diff --git a/lib/libform/form_field_userptr.3 b/lib/libform/form_field_userptr.3
index 3d204241d63..0677013ed49 100644
--- a/lib/libform/form_field_userptr.3
+++ b/lib/libform/form_field_userptr.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_field_userptr.3,v 1.5 1998/07/24 02:37:11 millert Exp $
+'\" t
+.\" $OpenBSD: form_field_userptr.3,v 1.6 1998/09/17 04:14:35 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_field_userptr.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_field_userptr.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field_userptr 3 ""
.SH NAME
\fBform_field_userptr\fR - associate application data with a form field
diff --git a/lib/libform/form_fieldtype.3 b/lib/libform/form_fieldtype.3
index 310fc25d30e..3a545d27550 100644
--- a/lib/libform/form_fieldtype.3
+++ b/lib/libform/form_fieldtype.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_fieldtype.3,v 1.5 1998/07/24 02:37:13 millert Exp $
+'\" t
+.\" $OpenBSD: form_fieldtype.3,v 1.6 1998/09/17 04:14:36 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_fieldtype.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_fieldtype.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_field 3 ""
.SH NAME
\fBform_fieldtype\fR - define validation-field types
diff --git a/lib/libform/form_hook.3 b/lib/libform/form_hook.3
index 6394a882f43..4239c5638c6 100644
--- a/lib/libform/form_hook.3
+++ b/lib/libform/form_hook.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_hook.3,v 1.5 1998/07/24 02:37:14 millert Exp $
+'\" t
+.\" $OpenBSD: form_hook.3,v 1.6 1998/09/17 04:14:36 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_hook.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_hook.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_hook 3 ""
.SH NAME
\fBform_hook\fR - set hooks for automatic invocation by applications
diff --git a/lib/libform/form_new.3 b/lib/libform/form_new.3
index f60ee86dbc8..eb4c993b20f 100644
--- a/lib/libform/form_new.3
+++ b/lib/libform/form_new.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_new.3,v 1.5 1998/07/24 02:37:15 millert Exp $
+'\" t
+.\" $OpenBSD: form_new.3,v 1.6 1998/09/17 04:14:36 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_new.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_new.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_new 3 ""
.SH NAME
\fBform_new\fR - create and destroy forms
diff --git a/lib/libform/form_new_page.3 b/lib/libform/form_new_page.3
index 661557fa08b..bb5a481e53d 100644
--- a/lib/libform/form_new_page.3
+++ b/lib/libform/form_new_page.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_new_page.3,v 1.5 1998/07/24 02:37:16 millert Exp $
+'\" t
+.\" $OpenBSD: form_new_page.3,v 1.6 1998/09/17 04:14:36 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_new_page.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_new_page.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_new_page 3 ""
.SH NAME
\fBform_new_page\fR - form pagination functions
diff --git a/lib/libform/form_opts.3 b/lib/libform/form_opts.3
index dc1dd6d3528..60c802f14c0 100644
--- a/lib/libform/form_opts.3
+++ b/lib/libform/form_opts.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_opts.3,v 1.5 1998/07/24 02:37:18 millert Exp $
+'\" t
+.\" $OpenBSD: form_opts.3,v 1.6 1998/09/17 04:14:36 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_opts.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_opts.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_opts 3 ""
.SH NAME
\fBform_opts\fR - set and get form options
diff --git a/lib/libform/form_page.3 b/lib/libform/form_page.3
index 6fa5a52a00a..3f41b639b21 100644
--- a/lib/libform/form_page.3
+++ b/lib/libform/form_page.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_page.3,v 1.5 1998/07/24 02:37:19 millert Exp $
+'\" t
+.\" $OpenBSD: form_page.3,v 1.6 1998/09/17 04:14:37 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_page.3x,v 1.6 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_page.3x,v 1.7 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_page 3 ""
.SH NAME
\fBform_page\fR - set and get form page number
diff --git a/lib/libform/form_post.3 b/lib/libform/form_post.3
index 72c5ea39390..a76026d0aca 100644
--- a/lib/libform/form_post.3
+++ b/lib/libform/form_post.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_post.3,v 1.4 1998/07/24 02:37:20 millert Exp $
+'\" t
+.\" $OpenBSD: form_post.3,v 1.5 1998/09/17 04:14:37 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_post.3x,v 1.2 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_post.3x,v 1.3 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_post 3 ""
.SH NAME
\fBform_post\fR - write or erase forms from associated subwindows
diff --git a/lib/libform/form_requestname.3 b/lib/libform/form_requestname.3
index 5c47e56b885..613d78a1b1d 100644
--- a/lib/libform/form_requestname.3
+++ b/lib/libform/form_requestname.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_requestname.3,v 1.4 1998/07/24 02:37:21 millert Exp $
+'\" t
+.\" $OpenBSD: form_requestname.3,v 1.5 1998/09/17 04:14:37 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_requestname.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_requestname.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_requestname 3 ""
.SH NAME
\fBform_requestname\fR - handle printable form request names
diff --git a/lib/libform/form_userptr.3 b/lib/libform/form_userptr.3
index 73c75f7620e..c94c8232b77 100644
--- a/lib/libform/form_userptr.3
+++ b/lib/libform/form_userptr.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_userptr.3,v 1.5 1998/07/24 02:37:22 millert Exp $
+'\" t
+.\" $OpenBSD: form_userptr.3,v 1.6 1998/09/17 04:14:37 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_userptr.3x,v 1.7 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_userptr.3x,v 1.8 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_userptr 3 ""
.SH NAME
\fBform_userptr\fR - associate application data with a form item
diff --git a/lib/libform/form_win.3 b/lib/libform/form_win.3
index 033e51b75c0..df04a554ff2 100644
--- a/lib/libform/form_win.3
+++ b/lib/libform/form_win.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: form_win.3,v 1.5 1998/07/24 02:37:23 millert Exp $
+'\" t
+.\" $OpenBSD: form_win.3,v 1.6 1998/09/17 04:14:37 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: form_win.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: form_win.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH form_win 3 ""
.SH NAME
\fBform_win\fR - make and break form window and subwindow associations
diff --git a/lib/libmenu/menu.3tbl b/lib/libmenu/menu.3tbl
index d9a9dce0fb6..76bdfe4e4fe 100644
--- a/lib/libmenu/menu.3tbl
+++ b/lib/libmenu/menu.3tbl
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu.3tbl,v 1.2 1998/07/24 16:39:21 millert Exp $
+'\" t
+.\" $OpenBSD: menu.3tbl,v 1.3 1998/09/17 04:14:44 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-'\" t
-.\" $From: menu.3x,v 1.11 1998/03/11 21:12:53 juergen Exp $
+.\" $From: menu.3x,v 1.12 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu 3 ""
.SH NAME
\fBmenu\fR - curses extension for programming menus
diff --git a/lib/libmenu/menu_attribs.3 b/lib/libmenu/menu_attribs.3
index 2fb7fc4bb1d..558ff8733cd 100644
--- a/lib/libmenu/menu_attribs.3
+++ b/lib/libmenu/menu_attribs.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_attribs.3,v 1.4 1998/07/24 16:39:25 millert Exp $
+'\" t
+.\" $OpenBSD: menu_attribs.3,v 1.5 1998/09/17 04:14:44 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_attribs.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_attribs.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_attributes 3 ""
.SH NAME
\fBmenu_attributes\fR - color and attribute control for menus
diff --git a/lib/libmenu/menu_cursor.3 b/lib/libmenu/menu_cursor.3
index 2abab22272d..3ca5e7df717 100644
--- a/lib/libmenu/menu_cursor.3
+++ b/lib/libmenu/menu_cursor.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_cursor.3,v 1.4 1998/07/24 16:39:26 millert Exp $
+'\" t
+.\" $OpenBSD: menu_cursor.3,v 1.5 1998/09/17 04:14:44 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_cursor.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_cursor.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_cursor 3 ""
.SH NAME
\fBmenu_cursor\fR - position a menu's cursor
diff --git a/lib/libmenu/menu_format.3 b/lib/libmenu/menu_format.3
index e09d6cec546..7e7838c5d5a 100644
--- a/lib/libmenu/menu_format.3
+++ b/lib/libmenu/menu_format.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_format.3,v 1.4 1998/07/24 16:39:28 millert Exp $
+'\" t
+.\" $OpenBSD: menu_format.3,v 1.5 1998/09/17 04:14:44 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_format.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_format.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_format 3 ""
.SH NAME
\fBmenu_format\fR - set and get menu sizes
diff --git a/lib/libmenu/menu_hook.3 b/lib/libmenu/menu_hook.3
index 5ea6dc6dbdc..7289191612a 100644
--- a/lib/libmenu/menu_hook.3
+++ b/lib/libmenu/menu_hook.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_hook.3,v 1.4 1998/07/24 16:39:29 millert Exp $
+'\" t
+.\" $OpenBSD: menu_hook.3,v 1.5 1998/09/17 04:14:45 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_hook.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_hook.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_hook 3 ""
.SH NAME
\fBmenu_hook\fR - set hooks for automatic invocation by applications
diff --git a/lib/libmenu/menu_items.3 b/lib/libmenu/menu_items.3
index d847dee95dd..4938cfd6c84 100644
--- a/lib/libmenu/menu_items.3
+++ b/lib/libmenu/menu_items.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_items.3,v 1.4 1998/07/24 16:39:31 millert Exp $
+'\" t
+.\" $OpenBSD: menu_items.3,v 1.5 1998/09/17 04:14:45 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_items.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_items.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_items 3 ""
.SH NAME
\fBmenu_items\fR - make and break connections between items and menus
diff --git a/lib/libmenu/menu_mark.3 b/lib/libmenu/menu_mark.3
index 9d132be7452..b802ff98ed8 100644
--- a/lib/libmenu/menu_mark.3
+++ b/lib/libmenu/menu_mark.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_mark.3,v 1.4 1998/07/24 16:39:32 millert Exp $
+'\" t
+.\" $OpenBSD: menu_mark.3,v 1.5 1998/09/17 04:14:45 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_mark.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_mark.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_mark 3 ""
.SH NAME
\fBmenu_mark\fR - get and set the menu mark string
diff --git a/lib/libmenu/menu_new.3 b/lib/libmenu/menu_new.3
index dc14b1174c6..6a3c6efeba0 100644
--- a/lib/libmenu/menu_new.3
+++ b/lib/libmenu/menu_new.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_new.3,v 1.4 1998/07/24 16:39:33 millert Exp $
+'\" t
+.\" $OpenBSD: menu_new.3,v 1.5 1998/09/17 04:14:45 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_new.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_new.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_new 3 ""
.SH NAME
\fBmenu_new\fR - create and destroy menus
diff --git a/lib/libmenu/menu_opts.3 b/lib/libmenu/menu_opts.3
index 9f0d61d3e55..36beef89b2a 100644
--- a/lib/libmenu/menu_opts.3
+++ b/lib/libmenu/menu_opts.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_opts.3,v 1.4 1998/07/24 16:39:34 millert Exp $
+'\" t
+.\" $OpenBSD: menu_opts.3,v 1.5 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_opts.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_opts.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_opts 3 ""
.SH NAME
\fBmenu_opts\fR - set and get menu options
diff --git a/lib/libmenu/menu_post.3 b/lib/libmenu/menu_post.3
index beeb9628186..5cb187f3c59 100644
--- a/lib/libmenu/menu_post.3
+++ b/lib/libmenu/menu_post.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_post.3,v 1.4 1998/07/24 16:39:36 millert Exp $
+'\" t
+.\" $OpenBSD: menu_post.3,v 1.5 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_post.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_post.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_post 3 ""
.SH NAME
\fBmenu_post\fR - write or erase menus from associated subwindows
diff --git a/lib/libmenu/menu_requestname.3 b/lib/libmenu/menu_requestname.3
index 1bb8e900efb..f42beb286a1 100644
--- a/lib/libmenu/menu_requestname.3
+++ b/lib/libmenu/menu_requestname.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_requestname.3,v 1.3 1998/07/24 16:39:37 millert Exp $
+'\" t
+.\" $OpenBSD: menu_requestname.3,v 1.4 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_requestname.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_requestname.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_requestname 3 ""
.SH NAME
\fBmenu_requestname\fR - handle printable menu request names
diff --git a/lib/libmenu/menu_spacing.3 b/lib/libmenu/menu_spacing.3
index 29c9ba30f70..174121c2f2e 100644
--- a/lib/libmenu/menu_spacing.3
+++ b/lib/libmenu/menu_spacing.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_spacing.3,v 1.3 1998/07/24 16:39:39 millert Exp $
+'\" t
+.\" $OpenBSD: menu_spacing.3,v 1.4 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_spacing.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_spacing.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_spacing 3 ""
.SH NAME
\fBmenu_spacing\fR - Control spacing between menu items.
diff --git a/lib/libmenu/menu_userptr.3 b/lib/libmenu/menu_userptr.3
index b191862ed4a..4ab172ad824 100644
--- a/lib/libmenu/menu_userptr.3
+++ b/lib/libmenu/menu_userptr.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_userptr.3,v 1.4 1998/07/24 16:39:40 millert Exp $
+'\" t
+.\" $OpenBSD: menu_userptr.3,v 1.5 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_userptr.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_userptr.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_userptr 3 ""
.SH NAME
\fBmenu_userptr\fR - associate application data with a menu item
diff --git a/lib/libmenu/menu_win.3 b/lib/libmenu/menu_win.3
index d6040ab8002..e71a9df27e4 100644
--- a/lib/libmenu/menu_win.3
+++ b/lib/libmenu/menu_win.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: menu_win.3,v 1.4 1998/07/24 16:39:41 millert Exp $
+'\" t
+.\" $OpenBSD: menu_win.3,v 1.5 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: menu_win.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: menu_win.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH menu_win 3 ""
.SH NAME
\fBmenu_win\fR - make and break menu window and subwindow associations
diff --git a/lib/libmenu/mitem_current.3 b/lib/libmenu/mitem_current.3
index 351c805ff5b..798d2803f3a 100644
--- a/lib/libmenu/mitem_current.3
+++ b/lib/libmenu/mitem_current.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_current.3,v 1.2 1998/07/24 16:39:43 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_current.3,v 1.3 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_current.3x,v 1.6 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_current.3x,v 1.7 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_current 3 ""
.SH NAME
\fBmitem_current\fR - set and get current_menu_item
diff --git a/lib/libmenu/mitem_name.3 b/lib/libmenu/mitem_name.3
index ffd1f221089..2040114dd50 100644
--- a/lib/libmenu/mitem_name.3
+++ b/lib/libmenu/mitem_name.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_name.3,v 1.2 1998/07/24 16:39:44 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_name.3,v 1.3 1998/09/17 04:14:46 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_name.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_name.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_name 3 ""
.SH NAME
\fBmitem_name\fR - get menu item name and description fields
diff --git a/lib/libmenu/mitem_new.3 b/lib/libmenu/mitem_new.3
index f19e3ba0bca..90937f53e99 100644
--- a/lib/libmenu/mitem_new.3
+++ b/lib/libmenu/mitem_new.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_new.3,v 1.2 1998/07/24 16:39:45 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_new.3,v 1.3 1998/09/17 04:14:47 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_new.3x,v 1.5 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_new.3x,v 1.6 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_new 3 ""
.SH NAME
\fBmitem_new\fR - create and destroy menu items
diff --git a/lib/libmenu/mitem_opts.3 b/lib/libmenu/mitem_opts.3
index fe5eeea6870..bbf39d13347 100644
--- a/lib/libmenu/mitem_opts.3
+++ b/lib/libmenu/mitem_opts.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_opts.3,v 1.2 1998/07/24 16:39:46 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_opts.3,v 1.3 1998/09/17 04:14:47 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_opts.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_opts.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_opts 3 ""
.SH NAME
\fBmitem_opts\fR - set and get menu item options
diff --git a/lib/libmenu/mitem_userptr.3 b/lib/libmenu/mitem_userptr.3
index 8090f338acf..6fe54507438 100644
--- a/lib/libmenu/mitem_userptr.3
+++ b/lib/libmenu/mitem_userptr.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_userptr.3,v 1.2 1998/07/24 16:39:48 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_userptr.3,v 1.3 1998/09/17 04:14:47 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_userptr.3x,v 1.4 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_userptr.3x,v 1.5 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_userptr 3 ""
.SH NAME
\fBmitem_userptr\fR - associate application data with a menu item
diff --git a/lib/libmenu/mitem_visible.3 b/lib/libmenu/mitem_visible.3
index e530c825aab..1fbc5c97495 100644
--- a/lib/libmenu/mitem_visible.3
+++ b/lib/libmenu/mitem_visible.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: mitem_visible.3,v 1.2 1998/07/24 16:39:50 millert Exp $
+'\" t
+.\" $OpenBSD: mitem_visible.3,v 1.3 1998/09/17 04:14:47 millert Exp $
.\"
.\"***************************************************************************
.\" Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -28,8 +29,7 @@
.\" authorization. *
.\"***************************************************************************
.\"
-.\" $From: mitem_visible.3x,v 1.3 1998/03/11 21:12:53 juergen Exp $
-'\" t
+.\" $From: mitem_visible.3x,v 1.4 1998/08/27 21:21:04 Rick.Ohnemus Exp $
.TH mitem_visible 3 ""
.SH NAME
\fBmitem_visible\fR - check visibility of a menu item
diff --git a/lib/libpanel/panel.c b/lib/libpanel/panel.c
index 5cf72649694..3304b4838bd 100644
--- a/lib/libpanel/panel.c
+++ b/lib/libpanel/panel.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: panel.c,v 1.4 1998/07/24 17:08:22 millert Exp $ */
+/* $OpenBSD: panel.c,v 1.5 1998/09/17 04:14:49 millert Exp $ */
/****************************************************************************
* Copyright (c) 1998 Free Software Foundation, Inc. *
@@ -42,7 +42,7 @@ MODULE_ID("$From: panel.c,v 1.15 1998/02/11 12:14:01 tom Exp $")
#ifndef TRACE_TXT
const char *_nc_my_visbuf(const void *ptr)
{
- char temp[40];
+ char temp[32];
if (ptr != 0)
snprintf(temp, sizeof(temp), "ptr:%p", ptr);
else