pike.git
/
src
/
error.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/error.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: error.c,v 1.
107
2003/
04
/
28
00
:
34
:
12
mast Exp $
+
|| $Id: error.c,v 1.
108
2003/
05
/
15
15
:
33
:
30
mast Exp $
*/ #define NO_PIKE_SHORTHAND #include "global.h" #include "svalue.h" #include "pike_macros.h" #include "pike_error.h" #include "interpret.h" #include "stralloc.h" #include "builtin_functions.h" #include "array.h" #include "object.h" #include "main.h" #include "builtin_functions.h" #include "backend.h" #include "operators.h" #include "module_support.h" #include "threads.h" #include "gc.h"
-
RCSID("$Id: error.c,v 1.
107
2003/
04
/
28
00
:
34
:
12
mast Exp $");
+
RCSID("$Id: error.c,v 1.
108
2003/
05
/
15
15
:
33
:
30
mast Exp $");
#undef ATTRIBUTE #define ATTRIBUTE(X) PMOD_EXPORT const char msg_fatal_error[] = "%s:%d: Fatal error:\n"; #ifdef PIKE_DEBUG PMOD_EXPORT const char msg_unsetjmp_nosync_1[] = "UNSETJMP out of sync! (last SETJMP at %s)!\n"; PMOD_EXPORT const char msg_unsetjmp_nosync_2[] =
pike.git/src/error.c:518:
break; case 1: pop_n_elems(args); if(GENERIC_ERROR_THIS->backtrace) ref_push_array(GENERIC_ERROR_THIS->backtrace); else push_int(0); break; default: index_error("error->`[]", Pike_sp-args, args, NULL, Pike_sp-args,
-
"Index %"PRINTPIKEINT"d is out of range 0
-
1.\n", ind);
+
"Index %"PRINTPIKEINT"d is out of range 0
..
1.\n", ind);
break; } } /*! @decl string describe() *! *! Make a readable error-message. *! *! @note *! Uses @[describe_backtrace()] to generate the message.