pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:8350:
} struct pike_string *format_exception_for_error_msg (struct svalue *thrown) { struct pike_string *s = NULL; push_svalue (thrown); SAFE_APPLY_MASTER ("describe_error", 1); if (TYPEOF(sp[-1]) == T_STRING) {
-
f_string_trim
_all_whites
(1);
+
f_string_trim(1);
push_constant_text("\n"); push_constant_text(" "); f_replace(3); return (--sp)->u.string; } else { pop_stack(); return NULL; } }