Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (3h)  netbsd-10 (18d)  netbsd-9 (18d)  netbsd-8 (23d) 

2024-06-03 22:00:04 UTC Now

2023-07-30 11:47:08 UTC netbsd-10 commitmail json YAML

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.

(martin)