pike.git/
src/
operators.c
Branch:
Tag:
Non-build tags
All tags
No tags
2019-02-02
2019-02-02 18:29:02 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f14acec5e89e5498ac38fe41f72e45879035d834 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
master
Runtime: Extended low_get_line() with local variable info.
622:
struct pike_string *file; INT_TYPE lineno; if(Pike_fp->pc &&
-
(file = low_get_line(Pike_fp->pc, Pike_fp->context->prog, &lineno))) {
+
(file = low_get_line(Pike_fp->pc, Pike_fp->context->prog,
+
&lineno
, NULL
))) {
push_string(file); }else{ push_int(0);
660:
struct pike_string *file; INT_TYPE lineno; if(Pike_fp->pc &&
-
(file = low_get_line(Pike_fp->pc, Pike_fp->context->prog, &lineno))) {
+
(file = low_get_line(Pike_fp->pc, Pike_fp->context->prog,
+
&lineno
, NULL
))) {
push_string(file); }else{ push_int(0);