Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [netbsd-10] src/sys/dev/wscons



Module Name:    src
Committed By:   martin
Date:           Sun Jul 30 11:47:08 UTC 2023

Modified Files:
        src/sys/dev/wscons [netbsd-10]: wsemul_vt100.c wsemul_vt100_subr.c

Log Message:
Pull up following revision(s) (requested by uwe in ticket #257):
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.25
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.26
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.27
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.28
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.29
        sys/dev/wscons/wsemul_vt100.c: revision 1.50
        sys/dev/wscons/wsemul_vt100.c: revision 1.51
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.30
        sys/dev/wscons/wsemul_vt100_subr.c: revision 1.31

Fix off by one (Crystal Kolipe in tech-kern@)

Add rin, indn, vpa, hpa, and cbt terminfo capabilities (Crystal Kolipe)

wscons(4): Ignore nonsense tab stops in vt100 emulation.

wscons(4): Paranoia: Clamp numbers of rows and columns.

wsemul_vt100_subr: don't assert unsigned ncols >= 0

wsemul_vt100_subr: spell edp->tabs assertion with NULL

Avoid overflow with too many ';' (David Leadbeater)

Prefix all messages with the method name

wsemul_vt100_subr: complete the refactoring from 2010
In 1.20 refactoring, functions in this file were changed to accept a
pointer to the new base class instead of the full emuldata:
  -wsemul_vt100_foo(struct wsemul_vt100_emuldata *edp, ...)
  +wsemul_vt100_foo(struct vt100base_data *edp, ...)
but the argument name was not changed.  While this saved on the diff
churn back then, it created a rather unfortunate situation where the
same emulation state variables are referred to differently in this
file and other vt100 emulation files.  Complete that old change by
renaming the base class arguments to match the variable name used for
it in other files.

Same object code is generated.


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.49.4.1 src/sys/dev/wscons/wsemul_vt100.c
cvs rdiff -u -r1.24 -r1.24.30.1 src/sys/dev/wscons/wsemul_vt100_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index