From 867079b517ffdbfbb4c4a8c3e31b077fc43f01d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 28 Feb 1999 18:07:43 +0100 Subject: [PATCH] Some minor changes. Rev: src/builtin_functions.c:1.153 Rev: src/interpret.c:1.115 Rev: src/pike_types.c:1.53 --- src/builtin_functions.c | 3 ++- src/interpret.c | 6 ++++-- src/pike_types.c | 3 ++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/builtin_functions.c b/src/builtin_functions.c index 913e4048f8..628e5ccd2f 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -3,8 +3,9 @@ ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ +/**/ #include "global.h" -RCSID("$Id: builtin_functions.c,v 1.152 1999/02/24 02:02:14 grubba Exp $"); +RCSID("$Id: builtin_functions.c,v 1.153 1999/02/28 17:07:40 grubba Exp $"); #include "interpret.h" #include "svalue.h" #include "pike_macros.h" diff --git a/src/interpret.c b/src/interpret.c index d3a66a516e..45731c6228 100644 --- a/src/interpret.c +++ b/src/interpret.c @@ -3,8 +3,9 @@ ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ +/**/ #include "global.h" -RCSID("$Id: interpret.c,v 1.114 1999/02/01 06:13:13 hubbe Exp $"); +RCSID("$Id: interpret.c,v 1.115 1999/02/28 17:07:42 grubba Exp $"); #include "interpret.h" #include "object.h" #include "program.h" @@ -854,7 +855,8 @@ void mega_apply2(enum apply_type type, INT32 args, void *arg1, void *arg2) fp = new_frame; if(function->func.offset == -1) - PIKE_ERROR(function->name->str, "Calling undefined function.\n", sp, args); + PIKE_ERROR(function->name->str, "Calling undefined function.\n", + sp, args); tailrecurse=-1; diff --git a/src/pike_types.c b/src/pike_types.c index f0457d90f8..1aa744b27c 100644 --- a/src/pike_types.c +++ b/src/pike_types.c @@ -3,8 +3,9 @@ ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ +/**/ #include "global.h" -RCSID("$Id: pike_types.c,v 1.52 1999/02/12 03:29:45 hubbe Exp $"); +RCSID("$Id: pike_types.c,v 1.53 1999/02/28 17:07:43 grubba Exp $"); #include <ctype.h> #include "svalue.h" #include "pike_types.h" -- GitLab