aboutsummaryrefslogtreecommitdiff
path: root/share/syscons/scrnmaps/iso-8859-7_to_cp437
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line .h patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*\*+\s*\$FreeBSD\$.*$\n/
* syscons: scrnmaps: appease -Wmissing-variable-declarationsKyle Evans2021-01-011-1/+1
| | | | | | | | | | scrmap is only used in the one compilation unit in all cases, make it static rather than extern'ing it. There's little benefit, but it's easy to do. It's unclear how this hasn't failed many builds before now, since it should have cropped up sometime around deeper hierarchies getting a default WARNS. MFC after: 3 days
* The idea of mapping non-existen characters to space (0x20) was nice alone,Andrey A. Chernov2002-01-211-14/+14
| | | | | | | | | | | | | but those maps also used as backward maps for Paste, so space becomes mapped to last non-existen character on Paste as result. Fix it by mapping non-existen characters to another non-existen one, i.e. to 0x00, so unused 0x00 can be backward-mapped to some junk without real harm. Pointed by: Alexander Kabaev <ak03@gte.com> Notes: svn path=/head/; revision=89630
* 1) Map all unused characters into 'space'.Andrey A. Chernov2001-11-231-14/+14
| | | | | | | 2) iso-8859-4_to_cp437 not do what its name tells at all, remove it Notes: svn path=/head/; revision=86800
* Improve Greek support in sysconsAndrey A. Chernov2001-11-201-0/+38
PR: 32119 Submitted by: Basileios Anastasatos <B.Anastasatos@MyRealBox.com> Notes: svn path=/head/; revision=86694