cddar
C Information: SS_cddar, SS_sargs
Procedure: Return the cddar, i.e. the cdr of the cdr
of the car, of the argument.
cdddr
C Information: SS_cdddr, SS_sargs
Procedure: Return the cdddr, i.e. the cdr of the cdr
of the cdr of the argument.
cddr
C Information: SS_cddr, SS_sargs
Procedure: Return the cddr, i.e, the cdr of the cdr, of the argument.
cdr
C Information: SS_cdr, SS_sargs
Procedure: Return the second member of the pair which
is the argument.
(cdr (1 2 3)) => (2 3)
ceiling
C Information: SS_ceil, SS_nargs
Procedure: Return the smallest integer greater than the argument.
close-input-file
C Information: SS_cls_in, SS_sargs
Procedure: Close the specified input port and release the
IN_PORT object.
close-output-file
C Information: SS_cls_out, SS_sargs
Procedure: Close the specified output port and release the
OUT_PORT object.
cond
C Information: SS_ident, SCOND, SS_sargs
Macro: Evaluate the list of cond clauses returning the value of
the first one whose first expression does not evaluate to #f. A cond clause
is a list of expressions whose irst element is evaluated and if the result
is not #f, the remaining expressions are evaluated and the value of the last
one is returned as the value of the clause, otherwise the cond clause
evaluates to #f.
((< i 1) expr ...)
((> i 1) expr ...))
cons
C Information: SS_cons, SS_nargs
Procedure: Return a new pair whose car and cdr are the arguments.
(cons 3 (2 1)) => (3 2 1)
cos
C Information: SS_cos, SS_nargs
Procedure: Return the cosine of the argument.
define
C Information: SS_ident, SDEFINE, SS_sargs
Macro: Define variables and procedures in the current environment.
define-macro
C Information: SS_ident, SDEFINE, SS_sargs
Macro: Define a macro in the current environment.
describe
C Information: SS_describe, SS_nargs
Procedure: Print the documentation for a procedure to the
specified device.
display
C Information: SS_display, SS_nargs
Procedure: Print an object to the specified device in
human readable form.
eof-object?
C Information: SS_eofp, SS_sargs
Procedure: Return #t if the object is an end-of-file
and #f otherwise.
eq?
C Information: SS_eq, SS_nargs
Procedure: Return #t iff the two objects are identical,
i.e. the two objects are the same object.
Usage: (eq? expr1 expr2)
Example: (define foo 3)
(define bar 3)
(eq? foo bar) => #f
(eq? foo foo) => #t
equal?
C Information: SS_equal, SS_nargs
Procedure: Return the result of recursively applying eqv?
to the arguments.
eqv?
C Information: SS_eqv, SS_nargs
Procedure: Return #t iff the two objects are equivalent,
i.e. the values of the two objects are the same.
Usage: (eqv? expr1 expr2)
Example: (define foo 3)
(define bar 3)
(eqv? foo bar) => #t
eval
C Information: SS_eval, SS_sargs
Procedure: Evaluate the given form and return the value.
even?
C Information: SS_even, SS_nargs
Procedure: Return #t iff the argument is a number divisible
exactly by 2.
exp
C Information: SS_exp, SS_nargs
Procedure: Return the exponential of the argument.
expt
C Information: SS_expt, SS_nargs
Procedure: Return the first argument raised to the power
of the second.
file?
C Information: SS_filep, SS_sargs
Procedure: Return #t if the object is a file and #f otherwise.
floor
C Information: SS_floor, SS_nargs
Procedure: Return the greatest integer less than the argument.
for-each
C Information: SS_foreach, SS_nargs
Procedure: Apply a procedure to a set of lists (for side effect).
guest-object?
C Information: SS_guestp, SS_sargs
Procedure: Return #t if the object is a GUEST object
and #f otherwise.
if
C Information: SS_ident, SIF, SS_sargs
Macro: Evaluate and return the consequent expression if
the test evaluates to #t and
evaluate and return the alternate expression otherwise.
Usage: (if test consequent alternate).
input-port?
C Information: SS_iportp, SS_sargs
Procedure: Return #t if the object is an input port
(IN_PORT) and #f otherwise.
integer?
C Information: SS_intp, SS_sargs
Procedure: Return #t if the object is an integer
number and #f otherwise.
lambda
C Information: SS_lambda, UR_MACRO, SS_nargs
Macro: Define an anonymous procedure.
Usage: (lambda parameters
expression1 ... expressionn).
last
C Information: SS_last, SS_sargs
Procedure: Return the last element of a list or
return any other object.
length
C Information: SS_length, SS_nargs
Procedure: Return the number of elements in the given list.
let
C Information: SS_let, UE_MACRO, SS_nargs
Macro: Define a region with variables of local scope.
(y (cdr (3 . 4))))
(+ x y)) => 7
let*
C Information: SS_letstr, UE_MACRO, SS_nargs
Macro: Define a region with variables of local scope.
The variables can be used in the
definition of other variables as soon as they are defined.
(y (cdr x)))
(append x y)) => (2 3 3)
list
C Information: SS_list, SS_nargs
Procedure: Return a new list made up of the arguments.
ln
C Information: SS_ln, SS_nargs
Procedure: Return the natural logarithm of the argument.
load
C Information: SS_load, SS_sargs
Procedure: Open a file of Scheme forms and eval all the objects in it.
log
C Information: SS_log, SS_nargs
Procedure: Return the logarithm base 10 of the argument.
make-new-symbol
C Information: SS_newsym, SS_sargs
Procedure: Generate a new symbol.
map
C Information: SS_map, SS_nargs
Procedure: Map a procedure over a set of lists.
member
C Information: SS_member, SS_nargs
Procedure: Return the first sublist of the second arg
whose car is equal? to the first arg.
memq
C Information: SS_memq, SS_nargs
Procedure: Return the first sublist of the
second arg whose car is eq? to the first arg.
memv
C Information: SS_memv, SS_nargs
Procedure: Return the first sublist of the second arg whose
car is eqv? to the first arg.
negative?
C Information: SS_neg, SS_nargs
Procedure: Return #t iff the argument is a number less than 0.
newline
C Information: SS_newline, SS_nargs
Procedure: Print a <CR><LF> or equivalent to the
specified device.
not
C Information: SS_not, SS_sargs
Procedure: Return #t if object is #f and #f for any other object.
null?
C Information: SS_nullp, SS_sargs
Procedure: Return #t iff the object is the empty list, ().
number?
C Information: SS_numberp, SS_sargs
Procedure: Return #t if the object is a number and #f otherwise.
odd?
C Information: SS_odd, SS_nargs
Procedure: Return #t iff the argument is a number that is not even.
open-input-file
C Information: SS_opn_in, SS_sargs
Procedure: Open the specified file for input and return an
IN_PORT object.
open-output-file
C Information: SS_opn_out, SS_sargs
Procedure: Open the specified file for output and return
an OUT_PORT object.
or
C Information: SS_ident, SOR, SS_sargs
Macro: Evaluate the forms until one evaluates to
something other than #f and return
that value as the result and return #f otherwise.
output-port?
C Information: SS_oportp, SS_sargs
Procedure: Return #t if the object is an output port
(OUT_PORT) and #f otherwise.
pair?
C Information: SS_pair, SS_args
Procedure: Return #t if the object is a cons or list and #f otherwise.
positive?
C Information: SS_pos, SS_nargs
Procedure: Return #t iff the argument is a number greater than 0.
print-toggle
C Information: SS_print_toggle, SS_zargs
Procedure: Toggle the printing of values.
printf
C Information: SS_printf, SS_nargs
Procedure: C-like formatted print function.
procedure?
C Information: SS_procp, SS_sargs
Procedure: Return #t if the object is a procedure
object and #f otherwise.
quasiquote
C Information: SS_quasiq, UR_MACRO, SS_sargs
Macro: Like quote except that unquote
and unquote-splicing forms are evald.
quit
C Information: SS_quit. UR_MACRO, SS_zargs
Macro: Exit from Scheme.
quote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote
C Information: SS_quote, UR_MACRO, SS_sargs
Macro: Return the expression without first evaluating iote