History log of /netbsd-src/lib/libmenu/menu.c (Results 1 – 18 of 18)
Revision Date Author Comments
# c58c21e5 30-Dec-2012 blymn <blymn@NetBSD.org>

Fix bug where menu mark was not displayed on menus with O_ONEVALUE set
Set a default menu mark


# f9113d00 21-Mar-2012 matt <matt@NetBSD.org>

Use C89 functions definitions.
Remove use of __P


# 8bf240cc 09-Mar-2003 lukem <lukem@NetBSD.org>

use __RCSID()


# 6f2e4ed7 27-Nov-2002 blymn <blymn@NetBSD.org>

Fix an off by one bug in the scale_menu() function.


# e5ce8316 22-Aug-2002 blymn <blymn@NetBSD.org>

Fix some off by one errors in the menu mark and unmark buffer handling.
This fixes PR 18003.


# f645d021 19-Aug-2002 blymn <blymn@NetBSD.org>

Allocate private string buffers for the menu mark and unmark to prevent
a double free of the string memory. This fixes PR 17937.


# 09440e90 29-Jul-2002 blymn <blymn@NetBSD.org>

Added new menu style O_RADIO which implements a radio button style
menu selection. Thanks go to rtr(at)wasabisystems.com for doing
most of the work on this.


# ca4de2a4 04-Feb-2002 blymn <blymn@NetBSD.org>

* Fixed menu command constants so they no longer clash with
curses key symbols
* Fixed behaviour of the menu window handling. The library no longer
creates the subwindow or window which is corre

* Fixed menu command constants so they no longer clash with
curses key symbols
* Fixed behaviour of the menu window handling. The library no longer
creates the subwindow or window which is correct behaviour as documented
in the ETI library documentation.

show more ...


# c03a48d6 13-Jun-2001 wiz <wiz@NetBSD.org>

withough -> without


# f9863c47 11-Jul-2000 itohy <itohy@NetBSD.org>

Correct ctype(3) usage.
Passing "char" value is wrong. Use "unsigned char" instead.


# bb920027 07-May-2000 blymn <blymn@NetBSD.org>

* Fixed possible unassigned variable problem.


# 5f001bd9 05-May-2000 blymn <blymn@NetBSD.org>

* Fixed off by one bug in scale menu
* Fixed bug in post_menu which created the subwin too small for the menu.


# 32a993af 20-Apr-2000 blymn <blymn@NetBSD.org>

* Made all functions and prototypes ANSI style.
* Fixed problem with highlight bar on inverse menus.
* Fixed libmenu crashing when posting a menu without sub window set.
* Fixed man page glitches.


# 718fb4e4 22-Dec-1999 kleink <kleink@NetBSD.org>

RCS Id police (again!).


# b7466e4f 16-Dec-1999 blymn <blymn@NetBSD.org>

* Moved the contents of the EXPOSE_PRIVATES ifdef into internal.h and
killed the now empty ifdef in menu.h. Also removed the define in
the CFLAGS in Makefile.
* Renamed _menui_menu_hook to Menu_

* Moved the contents of the EXPOSE_PRIVATES ifdef into internal.h and
killed the now empty ifdef in menu.h. Also removed the define in
the CFLAGS in Makefile.
* Renamed _menui_menu_hook to Menu_Hook for compatiability with
ncurses.
* Renamed all internal functions to have _menui prefix instead of
__menui
* Cleaned up some automatic function variable names that were
shadowing function calls.
* Fixed email address in headers.

show more ...


# 87bead52 30-Nov-1999 kleink <kleink@NetBSD.org>

* use <stdlib.h> instead of deprecated <malloc.h>
* replace <strings.h>/bcopy() with <string.h>/memcpy()


# 68f24b78 24-Nov-1999 kleink <kleink@NetBSD.org>

RCS Id police.


# b68c50bc 23-Nov-1999 blymn <blymn@NetBSD.org>

A curses based menu library.