blob: fabb607a572ea511a688d1dc7e46b04761b15f6e [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 2005-2006,2010 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303.\" *
4.\" Permission is hereby granted, free of charge, to any person obtaining a *
5.\" copy of this software and associated documentation files (the *
6.\" "Software"), to deal in the Software without restriction, including *
7.\" without limitation the rights to use, copy, modify, merge, publish, *
8.\" distribute, distribute with modifications, sublicense, and/or sell *
9.\" copies of the Software, and to permit persons to whom the Software is *
10.\" furnished to do so, subject to the following conditions: *
11.\" *
12.\" The above copyright notice and this permission notice shall be included *
13.\" in all copies or substantial portions of the Software. *
14.\" *
15.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22.\" *
23.\" Except as contained in this notice, the name(s) of the above copyright *
24.\" holders shall not be used in advertising or otherwise to promote the *
25.\" sale, use or other dealings in this Software without prior written *
26.\" authorization. *
27.\"***************************************************************************
28.\"
29.\" Author: Thomas E. Dickey
30.\"
Steve Kondikae271bc2015-11-15 02:50:53 +010031.\" $Id: legacy_coding.3x,v 1.4 2010/12/04 18:49:20 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032.TH legacy_coding 3X ""
33.SH NAME
34\fBuse_legacy_coding\fR \- use terminal's default colors
35.SH SYNOPSIS
36\fB#include <curses.h>\fP
37.sp
38\fBint use_legacy_coding(int level);\fP
39.SH DESCRIPTION
40The
41.I use_legacy_coding()
42function is an extension to the curses library.
43It allows the caller to change the result of \fBunctrl\fP,
44and suppress related checks within the library that would normally
45cause nonprinting characters to be rendered in visible form.
46This affects only 8-bit characters.
47.PP
48The \fIlevel\fP parameter controls the result:
49.RS
50.TP 5
510
52the library functions normally,
53rendering nonprinting characters as described in \fBunctrl\fP.
54.TP
551
56the library ignores \fBisprintf\fP for codes in the range 160-255.
57.TP
582
59the library ignores \fBisprintf\fP for codes in the range 128-255.
60It also modifies the output of \fBunctrl\fP, showing codes in the
61range 128-159 as is.
62.RE
63.SH RETURN VALUE
64If the screen has not been initialized,
65or the \fIlevel\fP parameter is out of range,
66the function returns \fBERR\fP.
67Otherwise, it returns the previous level: \fB0\fP, \fB1\fP or \fB2\fP.
68.SH PORTABILITY
69This routine is specific to ncurses.
70It was not supported on Version 7, BSD or System V implementations.
71It is recommended that any code depending on ncurses extensions
72be conditioned using NCURSES_VERSION.
73.SH SEE ALSO
74\fBunctrl\fR.
75.SH AUTHOR
76Thomas Dickey (to support lynx's font-switching feature).