From owner-cvs-all Fri Sep 25 20:38:49 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13987 for cvs-all-outgoing; Fri, 25 Sep 1998 20:38:49 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA13968; Fri, 25 Sep 1998 20:38:45 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA27900; Fri, 25 Sep 1998 20:38:41 -0700 (PDT) Date: Fri, 25 Sep 1998 20:38:41 -0700 (PDT) Message-Id: <199809260338.UAA27900@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa syscons.c videoio.c scvesactl.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk yokota 1998/09/25 20:38:40 PDT Modified files: sys/i386/isa syscons.c videoio.c scvesactl.c Log: Cosmetic changes: - there were too many global variables (there still are :-). - the data section was bloated by explicit initializations of static variables to 0 (only fixed the recently changed ones). - WRAPHIST() had silly parentheses around foo->bar. - the comment about inline functions was stale. - the comment about Userconfig presumes too much about the boot environment. - `i' was reused confusingly in scioctl(). - the declaration of `butmap' used a deprecated K&R misfeature. - the initializeation of `butmap' had an unnecessary line break. - `unsigned char' was not consistently (mis)spelled as u_char. - English was poor in a comment in videoio.c. Submitted by: bde Revision Changes Path 1.281 +19 -22 src/sys/i386/isa/syscons.c 1.5 +5 -5 src/sys/i386/isa/videoio.c 1.5 +2 -1 src/sys/i386/isa/scvesactl.c