diff --git a/src/KIM/pair_kim.cpp b/src/KIM/pair_kim.cpp index acd32d80a0..b9c3f83147 100644 --- a/src/KIM/pair_kim.cpp +++ b/src/KIM/pair_kim.cpp @@ -328,7 +328,7 @@ void PairKIM::coeff(int narg, char **arg) // This is called when "pair_coeff ..." is read from input // may be called multiple times - int i,j,n; + int i,j; if (!allocated) allocate(); diff --git a/src/deprecated.cpp b/src/deprecated.cpp index f699289a7d..8523cf353a 100644 --- a/src/deprecated.cpp +++ b/src/deprecated.cpp @@ -36,6 +36,9 @@ void Deprecated::command(int /* narg */, char ** /* arg */) } else if (cmd == "reset_ids") { if (lmp->comm->me == 0) utils::logmesg(lmp,"\n'reset_ids' has been renamed to 'reset_atom_ids'\n\n"); + } else if (utils::strmatch(cmd,"^kim_")) { + if (lmp->comm->me == 0) + utils::logmesg(lmp,"\n'kim_' has been renamed to 'kim '\n\n"); } error->all(FLERR,"This command is no longer available"); } diff --git a/src/deprecated.h b/src/deprecated.h index 4a7fbc44cf..aceb1181c1 100644 --- a/src/deprecated.h +++ b/src/deprecated.h @@ -15,6 +15,11 @@ CommandStyle(DEPRECATED,Deprecated) CommandStyle(reset_ids,Deprecated) +CommandStyle(kim_init,Deprecated) +CommandStyle(kim_interactions,Deprecated) +CommandStyle(kim_param,Deprecated) +CommandStyle(kim_property,Deprecated) +CommandStyle(kim_query,Deprecated) #else