From owner-cvs-bin Sun Aug 6 12:35:41 1995 Return-Path: cvs-bin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id MAA01057 for cvs-bin-outgoing; Sun, 6 Aug 1995 12:35:41 -0700 Received: (from joerg@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id MAA01046 ; Sun, 6 Aug 1995 12:35:34 -0700 Date: Sun, 6 Aug 1995 12:35:34 -0700 From: Joerg Wunsch Message-Id: <199508061935.MAA01046@freefall.cdrom.com> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/sh options.c Sender: cvs-bin-owner@freebsd.org Precedence: bulk joerg 95/08/06 12:35:34 Modified: bin/sh options.c Log: Fix /bin/sh's broken handling of the builtin getopts(1). The options ``-ffoo'' and ``-f foo'' have been treated differently. This has been in violation of Posix.2 (that deprecates -ffoo, but doesn't disallow it). From owner-cvs-bin Mon Aug 7 17:03:13 1995 Return-Path: cvs-bin-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id RAA08967 for cvs-bin-outgoing; Mon, 7 Aug 1995 17:03:13 -0700 Received: (from ache@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id RAA08943 ; Mon, 7 Aug 1995 17:03:07 -0700 Date: Mon, 7 Aug 1995 17:03:07 -0700 From: "Andrey A. Chernov" Message-Id: <199508080003.RAA08943@freefall.cdrom.com> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/ls print.c Sender: cvs-bin-owner@freebsd.org Precedence: bulk ache 95/08/07 17:03:06 Modified: bin/ls print.c Log: Change ctime to strftime %c to use national date/time representation From owner-cvs-bin Wed Aug 9 22:13:52 1995 Return-Path: cvs-bin-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA18367 for cvs-bin-outgoing; Wed, 9 Aug 1995 22:13:52 -0700 Received: (from ache@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA18357 ; Wed, 9 Aug 1995 22:13:46 -0700 Date: Wed, 9 Aug 1995 22:13:46 -0700 From: "Andrey A. Chernov" Message-Id: <199508100513.WAA18357@freefall.FreeBSD.org> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/csh lex.c Sender: cvs-bin-owner@freebsd.org Precedence: bulk ache 95/08/09 22:13:46 Modified: bin/csh lex.c Log: Fix csh to determine event number properly, i.e. stop by ^*-% too. This fix match with what manpage said and other systems csh's do. Submitted by: Bill Fenner From owner-cvs-bin Fri Aug 11 01:18:58 1995 Return-Path: cvs-bin-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id BAA10814 for cvs-bin-outgoing; Fri, 11 Aug 1995 01:18:58 -0700 Received: (from joerg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id BAA10796 ; Fri, 11 Aug 1995 01:18:42 -0700 Date: Fri, 11 Aug 1995 01:18:42 -0700 From: Joerg Wunsch Message-Id: <199508110818.BAA10796@freefall.FreeBSD.org> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/sh parser.c Sender: cvs-bin-owner@freebsd.org Precedence: bulk joerg 95/08/11 01:18:42 Modified: bin/sh parser.c Log: sh(1) incorrectly ignored an EOF condition when looking for the closing backquote in a `foo` substitution. Discovered by: Martin Welk