diff --git a/check.t b/check.t index 8acd588..4e8c2f0 100644 --- a/check.t +++ b/check.t @@ -1,4 +1,4 @@ -# $MirOS: src/bin/mksh/check.t,v 1.555 2012/08/17 18:34:18 tg Exp $ +# $MirOS: src/bin/mksh/check.t,v 1.556 2012/08/24 21:33:47 tg Exp $ # $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $ @@ -29,7 +29,7 @@ # http://www.freebsd.org/cgi/cvsweb.cgi/src/tools/regression/bin/test/regress.sh?rev=HEAD expected-stdout: - @(#)MIRBSD KSH R40 2012/08/17 + @(#)MIRBSD KSH R40 2012/08/24 description: Check version of shell. stdin: @@ -38,7 +38,7 @@ name: KSH_VERSION category: shell:legacy-no --- expected-stdout: - @(#)LEGACY KSH R40 2012/08/17 + @(#)LEGACY KSH R40 2012/08/24 description: Check version of legacy shell. stdin: diff --git a/edit.c b/edit.c index 4b062a1..11e7dd5 100644 --- a/edit.c +++ b/edit.c @@ -28,7 +28,7 @@ #ifndef MKSH_NO_CMDLINE_EDITING -__RCSID("$MirOS: src/bin/mksh/edit.c,v 1.250 2012/08/24 21:15:40 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/edit.c,v 1.251 2012/08/24 21:33:49 tg Exp $"); /* * in later versions we might use libtermcap for this, but since external @@ -2774,7 +2774,7 @@ do_complete( */ char *cp; - cp = ucstrchr(unescaped + 1, '/'); + cp = strchr(unescaped + 1, '/'); *cp++ = 0; cp = shf_smprintf("%s/%s", tilde(unescaped + 1), cp); afree(unescaped, ATEMP); diff --git a/sh.h b/sh.h index 90cd773..d944daa 100644 --- a/sh.h +++ b/sh.h @@ -157,9 +157,9 @@ #endif #ifdef EXTERN -__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.583 2012/08/24 21:15:42 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.584 2012/08/24 21:33:51 tg Exp $"); #endif -#define MKSH_VERSION "R40 2012/08/17" +#define MKSH_VERSION "R40 2012/08/24" /* arithmetic types: C implementation */ #if !HAVE_CAN_INTTYPES