X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_terminfo.3x.html;h=d2b71d4a13f16af668142bb1b10981cab0444c3d;hb=a1e63be290fce9e589bc57c9f753be09e8ac0cc7;hp=68774963860b70a9eb53077e21b2fd64be63efd6;hpb=f6718d80c998008de6cfe8e6296bee3958ff86d7;p=ncurses.git diff --git a/doc/html/man/curs_terminfo.3x.html b/doc/html/man/curs_terminfo.3x.html index 68774963..d2b71d4a 100644 --- a/doc/html/man/curs_terminfo.3x.html +++ b/doc/html/man/curs_terminfo.3x.html @@ -1,7 +1,7 @@ @@ -48,9 +48,9 @@

NAME

        del_curterm, mvcur, putp, restartterm, set_curterm,
-       setterm, setupterm, tigetflag, tigetnum, tigetstr, tparm,
-       tputs, vid_attr, vid_puts, vidattr, vidputs - curses
-       interfaces to terminfo database
+       setterm, setupterm, tigetflag, tigetnum, tigetstr, tiparm,
+       tparm, tputs, vid_attr, vid_puts, vidattr, vidputs -
+       curses interfaces to terminfo database
 
 
 
@@ -74,6 +74,7 @@ int tigetflag(char *capname); int tigetnum(char *capname); char *tigetstr(char *capname); + char *tiparm(const char *str, ...); @@ -180,6 +181,10 @@ ters pi. A pointer is returned to the result of str with the parameters applied. + tiparm is a newer form of tparm which uses <stdarg.h> + rather than a fixed-parameter list. Its numeric parame- + ters are integers (int) rather than longs. + The tputs routine applies padding information to the string str and outputs it. The str must be a terminfo string variable or the return value from tparm, tgetstr, @@ -312,10 +317,14 @@ X/Open Curses prototypes tparm with a fixed number of pa- rameters, rather than a variable argument list. This im- - plementation uses a variable argument list. Portable ap- - plications should provide 9 parameters after the format; + plementation uses a variable argument list, but can be + configured to use the fixed-parameter list. Portable ap- + plications should provide 9 parameters after the format; zeroes are fine for this purpose. + In response to comments by Thomas E. Dickey, X/Open Curses + Issue 7 proposed the tiparam function in mid-2009. + X/Open notes that after calling mvcur, the curses state may not match the actual terminal state, and that an ap- plication should touch and refresh the window before re- @@ -338,7 +347,8 @@

SEE ALSO

        curses(3x), curs_initscr(3x), curs_kernel(3x),  curs_term-
-       cap(3x), putc(3), terminfo(5)
+       cap(3x),  curs_variables(3x), term_variables(3x), putc(3),
+       terminfo(5)