1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 16:50:21 +02:00

* backtrace.c, debug.c, eval.c, eval.h, gsubr.c, procprop.h,

read.c, srcprop.c, srcprop.h (scm_i_filename, scm_i_line,
scm_i_column, scm_i_copy, scm_i_name, scm_i_lambda, scm_i_source,
scm_i_more, scm_i_procname, scm_i_dot, scm_i_arrow, scm_i_else,
scm_i_unquote, scm_i_uq_splicing, scm_i_apply, scm_i_enter_frame,
scm_i_apply_frame, scm_i_exit_frame, scm_i_trace, scm_i_quote,
scm_i_begin, scm_i_if, scm_i_and, scm_i_or, scm_i_case,
scm_i_cond, scm_i_letstar, scm_i_do, scm_i_quasiquote,
scm_i_define, scm_i_letrec, scm_i_let, scm_i_atapply,
scm_i_atcall_cc, scm_i_breakpoint): Renamed: Consequently use
scm_sym_ as prefix for symbols.
This commit is contained in:
Mikael Djurfeldt 1999-08-17 08:47:47 +00:00
parent 55b0ed6971
commit 92e5aa0e92
4 changed files with 40 additions and 40 deletions

View file

@ -111,13 +111,13 @@ typedef struct scm_srcprops_chunk
&& SRCPROPSP (t.arg1)\
&& (1L << 16) & SCM_CAR (t.arg1))
#define PROCTRACEP(x) SCM_NFALSEP (scm_procedure_property (x, scm_i_trace))
#define PROCTRACEP(x) SCM_NFALSEP (scm_procedure_property (x, scm_sym_trace))
extern SCM scm_i_filename;
extern SCM scm_i_copy;
extern SCM scm_i_line;
extern SCM scm_i_column;
extern SCM scm_i_breakpoint;
extern SCM scm_sym_filename;
extern SCM scm_sym_copy;
extern SCM scm_sym_line;
extern SCM scm_sym_column;
extern SCM scm_sym_breakpoint;