diff options
| author | lukem <lukem@NetBSD.org> | 1998-08-29 08:32:32 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 1998-08-29 08:32:32 +0000 |
| commit | ce83c69e00a77ed28196913aa6cd4d90b18a5a40 (patch) | |
| tree | 450c82d7051427c4a5591ae055ee20a914f89ff7 /lib/libcurses | |
| parent | ed88a6f1032cd4c9cfba1c0bd934bbe6bff8fc05 (diff) | |
first pass at fixing up capitalization of function names and
arguments; ensure that each is correct with respect to the
implementation, rather than being correct as per english.
Diffstat (limited to 'lib/libcurses')
| -rw-r--r-- | lib/libcurses/PSD.doc/intro.1 | 4 | ||||
| -rw-r--r-- | lib/libcurses/PSD.doc/intro.3 | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/libcurses/PSD.doc/intro.1 b/lib/libcurses/PSD.doc/intro.1 index f2959f5b045..150384aba14 100644 --- a/lib/libcurses/PSD.doc/intro.1 +++ b/lib/libcurses/PSD.doc/intro.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: intro.1,v 1.4 1998/01/09 04:12:11 perry Exp $ +.\" $NetBSD: intro.1,v 1.5 1998/08/29 08:32:44 lukem Exp $ .\" .\" Copyright (c) 1980, 1993 .\" The Regents of the University of California. All rights reserved. @@ -138,7 +138,7 @@ the routine if the window is not .Vn stdscr ) is called. -.Fn Refresh +.Fn refresh makes the terminal, in the area covered by the window, look like that window. diff --git a/lib/libcurses/PSD.doc/intro.3 b/lib/libcurses/PSD.doc/intro.3 index 0a88a7fbd22..f5f6a5c1142 100644 --- a/lib/libcurses/PSD.doc/intro.3 +++ b/lib/libcurses/PSD.doc/intro.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: intro.3,v 1.4 1998/01/09 04:12:12 perry Exp $ +.\" $NetBSD: intro.3,v 1.5 1998/08/29 08:32:44 lukem Exp $ .\" .\" Copyright (c) 1980, 1993 .\" The Regents of the University of California. All rights reserved. @@ -56,7 +56,7 @@ it can overflow core when attempting to do so. On this rather rare occasion, .Fn initscr returns ERR. -.Fn Initscr +.Fn initscr must .bi always be called before any of the routines which affect windows are used. @@ -91,7 +91,7 @@ Additional windows can be created by using the functions .Fn newwin and .Fn subwin . -.Fn Delwin +.Fn delwin allows you to delete an exisiting window. The variables .Vn LINES @@ -117,14 +117,14 @@ used to change what will go on a window are .Fn addch and .Fn move . -.Fn Addch +.Fn addch adds a character at the current \*y, returning ERR if it would cause the window to illegally scroll, .i i.e. , printing a character in the lower right-hand corner of a terminal which automatically scrolls if scrolling is not allowed. -.Fn Move +.Fn move changes the current \*y to whatever you want them to be. It returns ERR if you try to move off the window. As mentioned above, you can combine the two into |
