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.
105
2003/04/
01
14
:
24
:
19
mast
Exp $
+
|| $Id: error.c,v 1.
106
2003/04/
07
17
:
28
:
55
nilsson
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.
105
2003/04/
01
14
:
24
:
19
mast
Exp $");
+
RCSID("$Id: error.c,v 1.
106
2003/04/
07
17
:
28
:
55
nilsson
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:444:
Inside #if 1
*/ #define ERR_DECLARE #include "errors.h" /*! @decl array cast(string type) *! *! Cast operator. *! *! @note
-
*! The only supported type to cast to is
@tt{
"array"@}, which
+
*! The only supported type to cast to is
@expr{
"array"@}, which
*! generates and old-style error. */ static void f_error_cast(INT32 args) { char *s; get_all_args("error->cast",args,"%s",&s); if(!strncmp(s,"array",5)) { pop_n_elems(args); if(GENERIC_ERROR_THIS->desc)