~ubuntu-branches/ubuntu/vivid/gcl/vivid

« back to all changes in this revision

Viewing changes to info/gcl-si/Environment.html

  • Committer: Package Import Robot
  • Author(s): Camm Maguire
  • Date: 2014-05-16 17:41:33 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: package-import@ubuntu.com-20140516174133-czs0uktsjj2vkhxk
2.6.11preĀ testĀ 11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
2
<html>
 
3
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
 
4
<head>
 
5
<title>GCL SI Manual: Environment</title>
 
6
 
 
7
<meta name="description" content="GCL SI Manual: Environment">
 
8
<meta name="keywords" content="GCL SI Manual: Environment">
 
9
<meta name="resource-type" content="document">
 
10
<meta name="distribution" content="global">
 
11
<meta name="Generator" content="makeinfo">
 
12
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
13
<link href="index.html#Top" rel="start" title="Top">
 
14
<link href="Function-and-Variable-Index.html#Function-and-Variable-Index" rel="index" title="Function and Variable Index">
 
15
<link href="Function-and-Variable-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
 
16
<link href="Miscellaneous.html#Miscellaneous" rel="up" title="Miscellaneous">
 
17
<link href="Inititialization.html#Inititialization" rel="next" title="Inititialization">
 
18
<link href="Miscellaneous.html#Miscellaneous" rel="prev" title="Miscellaneous">
 
19
<style type="text/css">
 
20
<!--
 
21
a.summary-letter {text-decoration: none}
 
22
blockquote.smallquotation {font-size: smaller}
 
23
div.display {margin-left: 3.2em}
 
24
div.example {margin-left: 3.2em}
 
25
div.indentedblock {margin-left: 3.2em}
 
26
div.lisp {margin-left: 3.2em}
 
27
div.smalldisplay {margin-left: 3.2em}
 
28
div.smallexample {margin-left: 3.2em}
 
29
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
 
30
div.smalllisp {margin-left: 3.2em}
 
31
kbd {font-style:oblique}
 
32
pre.display {font-family: inherit}
 
33
pre.format {font-family: inherit}
 
34
pre.menu-comment {font-family: serif}
 
35
pre.menu-preformatted {font-family: serif}
 
36
pre.smalldisplay {font-family: inherit; font-size: smaller}
 
37
pre.smallexample {font-size: smaller}
 
38
pre.smallformat {font-family: inherit; font-size: smaller}
 
39
pre.smalllisp {font-size: smaller}
 
40
span.nocodebreak {white-space:nowrap}
 
41
span.nolinebreak {white-space:nowrap}
 
42
span.roman {font-family:serif; font-weight:normal}
 
43
span.sansserif {font-family:sans-serif; font-weight:normal}
 
44
ul.no-bullet {list-style: none}
 
45
-->
 
46
</style>
 
47
 
 
48
 
 
49
</head>
 
50
 
 
51
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
 
52
<a name="Environment"></a>
 
53
<div class="header">
 
54
<p>
 
55
Next: <a href="Inititialization.html#Inititialization" accesskey="n" rel="next">Inititialization</a>, Previous: <a href="Miscellaneous.html#Miscellaneous" accesskey="p" rel="prev">Miscellaneous</a>, Up: <a href="Miscellaneous.html#Miscellaneous" accesskey="u" rel="up">Miscellaneous</a> &nbsp; [<a href="Function-and-Variable-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Function-and-Variable-Index.html#Function-and-Variable-Index" title="Index" rel="index">Index</a>]</p>
 
56
</div>
 
57
<hr>
 
58
<a name="Environment-1"></a>
 
59
<h3 class="section">19.1 Environment</h3>
 
60
 
 
61
<p>The environment in GCL which is passed to macroexpand and
 
62
other functions requesting an environment, should be a
 
63
list of 3 lists.    The first list looks like ((v1 val1) (v2 val2) ..)
 
64
where vi are variables and vali are their values.    
 
65
The second is a list of ((fname1 . fbody1) (fname2 . fbody2) ...)
 
66
where fbody1 is either (macro lambda-list lambda-body) or
 
67
(lambda-list lambda-body) depending on whether this is a macro
 
68
or a function.   The third list contains tags and blocks.
 
69
</p>
 
70
 
 
71
 
 
72
 
 
73
</body>
 
74
</html>