diff options
author | paul <paul@FreeBSD.org> | 1995-03-26 07:44:33 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1995-03-26 07:44:33 +0000 |
commit | e0abbde8cf65bc85c00329f124c29ebadabca1a4 (patch) | |
tree | 74529f2af39672789431bf89b4541f799c86b669 /lib/libforms/menu.c | |
parent | 91aac05da2413bf79364520453818b2c52f8650e (diff) | |
download | FreeBSD-src-e0abbde8cf65bc85c00329f124c29ebadabca1a4.zip FreeBSD-src-e0abbde8cf65bc85c00329f124c29ebadabca1a4.tar.gz |
Use a hash table to hold all the bindings info rather than a linked list.
Forms now have their own local bindings table so that anything
declared within a form is local to that form. This means you can
have fields of the same name in different forms.
Added inlined attribute setting for strings e.g. "This is \bold bold"
Added entry and exit functions for fields.
Diffstat (limited to 'lib/libforms/menu.c')
-rw-r--r-- | lib/libforms/menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libforms/menu.c b/lib/libforms/menu.c index d2beb44..9f373b4 100644 --- a/lib/libforms/menu.c +++ b/lib/libforms/menu.c @@ -32,6 +32,7 @@ * */ +#include <hash.h> #include <forms.h> #include <stdlib.h> #include <string.h> |