From c004486105922ebaf46798163458308d7f300d2c Mon Sep 17 00:00:00 2001 From: j8takagi Date: Mon, 25 May 2026 23:06:33 +0900 Subject: [PATCH] =?utf8?q?=E3=82=B3=E3=83=B3=E3=83=91=E3=82=A4=E3=83=AB?= =?utf8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=82=92=E6=8A=91=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- LICENSE | 2 +- README | 2 +- VERSION | 2 +- doc/install.texi | 2 +- doc/manual.texi | 2 +- src/assemble.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 9dec34a..0cd52f2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2010-2023, j8takagi. +Copyright (c) 2010-2026, j8takagi. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README b/README index 0c0d21e..1ef04e0 100644 --- a/README +++ b/README @@ -29,7 +29,7 @@ YACASL2のWebサイトは、次のURLです。 ライセンス ****************** -Copyright (c) 2010-2023, j8takagi. +Copyright (c) 2010-2026, j8takagi. YACASL2 is licensed under the MIT license. ライセンスの詳細は、同梱のLICENSEを参照してください。 diff --git a/VERSION b/VERSION index 6fe00d3..1f3d544 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.5p31 +v0.5p32 diff --git a/doc/install.texi b/doc/install.texi index 1cfb066..4ca5d99 100644 --- a/doc/install.texi +++ b/doc/install.texi @@ -14,7 +14,7 @@ @c %**end of header @copying -Copyright @copyright{} 2010-2023 j8takagi +Copyright @copyright{} 2010-2026 j8takagi @end copying @titlepage diff --git a/doc/manual.texi b/doc/manual.texi index 7e7c27c..ae2140d 100644 --- a/doc/manual.texi +++ b/doc/manual.texi @@ -14,7 +14,7 @@ @c %**end of header @copying -Copyright @copyright{} 2010-2023 j8takagi +Copyright @copyright{} 2010-2026 j8takagi @end copying @dircategory Programming diff --git a/src/assemble.c b/src/assemble.c index 12bb844..f597574 100644 --- a/src/assemble.c +++ b/src/assemble.c @@ -542,7 +542,7 @@ void assemble_rpop(const CMDLINE *cmdl, PASS pass) bool casl2cmd(CMD *cmdtbl, const CMDLINE *cmdl, PASS pass) { - void (*cmdptr)() = NULL; + void (*cmdptr)(const CMDLINE *, PASS) = NULL; for(int i = 0; cmdtbl[i].name[0]; i++) { if(strcmp(cmdl->cmd, cmdtbl[i].name) == 0) { -- 2.47.3