summaryrefslogtreecommitdiffstats
path: root/sys/dev/wscons/wsemul_vt100.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Remove some case statements which have been compiled out since 2000.fcambus2017-08-101-20/+1
* Partially revert previous mallocarray conversions that containdhill2017-04-111-5/+5
* Convert some malloc(9) to mallocarray(9)dhill2017-04-091-5/+5
* fairly simple sizes for free(); ok teduderaadt2015-08-281-2/+2
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-3/+3
* UTF-8 support for wsdisplay emulation modes. Both vt100 and sun emulationmiod2013-10-181-85/+204
* Introduce a dedicated private header file to control the optional featuresmiod2013-10-181-8/+5
* Use (N * sizeof(u_int)) instead of (N * sizeof(int)) when malloc'ing u_int *.miod2013-06-161-5/+5
* In `string' state, accept bell (^G) as an end of sequence in addition tomiod2011-08-041-2/+8
* After all escape sequence processing, check for being beyond the lastnicm2010-09-011-2/+13
* Check the return value of all emulops in the emulation code, and abortmiod2009-09-051-68/+216
* Make the output() wsemul_op return the number of characters processed andmiod2009-09-051-3/+9
* Rework internal interfaces in the wsdisplay emulation code to prepare formiod2009-09-051-43/+61
* Recognize CAN and SUB control characters, and cancel any current escapemiod2009-01-121-6/+10
* Remove whitespace at EOL, KNF, ansify. Move jump scroll code to a separatemiod2007-11-271-195/+143
* Ask the emulation code to hide the cursor when leaving emulation mode. Thismiod2007-11-251-1/+5
* KNFgilles2007-09-111-2/+2
* more MALLOC/FREE -> malloc/free and M_ZERO changesgilles2007-09-101-4/+2
* FALLTHRU -> FALLTHROUGH for consistency.jsg2007-02-141-2/+2
* Some dynamically allocated elements are not considered of vital importancemiod2007-01-071-107/+110
* Change allocations to M_NOWAIT in attach methods, and return NULL if they fail.miod2007-01-071-2/+4
* Fix hopefully the last wscons jump scrolling glitch, which can occurdim2006-10-191-1/+3
* Fix jump scroll glitch, reported by dim@ and Paul Stoeber.miod2006-10-091-2/+2
* Jump scroll support for vt100 and sun wscons emulations, helps macppc andmiod2006-08-171-1/+77
* correct indentderaadt2004-12-251-2/+2
* vt100 wscons crashes restoring cursor if it had never been saved before.miod2004-12-231-1/+4
* Reliability fix, from NetBSD:miod2004-12-231-18/+25
* remove terms 3 & 4 for drochner@NetBSD.org; as seen on netbsd listsderaadt2004-04-021-7/+1
* Remove more '\n's from panic() statements. Both trailing and leading.krw2002-10-121-2/+2
* First round of __P removal in sysmillert2002-03-141-16/+16
* Remove some static.aaron2001-04-141-23/+23
* Instead of panic'ing when an ESC is found in kernel output, print a warningaaron2001-03-071-5/+7
* default to kernel messages bluederaadt2001-02-201-8/+2
* sync w/ netbsd; aaron@ okmickey2001-02-101-2/+2
* update wscons, nothing serious, mostly api fixes for us; from netbsd through aaron@mickey2000-08-011-8/+8
* import newer wscons source from netbsd.mickey2000-05-161-0/+983