From b55607d82553899af0cb0c67cbd61c689f9222de Mon Sep 17 00:00:00 2001 From: tg Date: Sun, 7 Oct 2018 01:10:11 +0000 Subject: [PATCH] =?UTF-8?q?spelling=20cleanup:=20=E2=80=9Cprogramme?= =?UTF-8?q?=E2=80=9D=20is=20distinct=20from=20=E2=80=9Cprogram=E2=80=9D;?= =?UTF-8?q?=20even=20in=20British=20English,=20the=20latter=20is=20used=20?= =?UTF-8?q?for=20computer=20programs,=20while=20the=20former=20serves=20fo?= =?UTF-8?q?r=20things=20like=20the=20TV=20programme,=20or=20a=20programme?= =?UTF-8?q?=20to=20plant=20trees?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exec.c b/exec.c index 8330174..089091e 100644 --- a/exec.c +++ b/exec.c @@ -23,7 +23,7 @@ #include "sh.h" -__RCSID("$MirOS: src/bin/mksh/exec.c,v 1.201 2017/10/11 21:09:24 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/exec.c,v 1.202 2018/10/07 01:10:11 tg Exp $"); #ifndef MKSH_DEFAULT_EXECSHELL #define MKSH_DEFAULT_EXECSHELL MKSH_UNIXROOT "/bin/sh" @@ -1011,7 +1011,7 @@ scriptexec(struct op *tp, const char **ap) cap.ro = ap; execve(args.rw[0], args.rw, cap.rw); - /* report both the programme that was run and the bogus interpreter */ + /* report both the program that was run and the bogus interpreter */ errorf(Tf_sD_sD_s, tp->str, sh, cstrerror(errno)); }