File: global-tracelimit.htm

package info (click to toggle)
nyquist 3.12%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 58,036 kB
  • sloc: ansic: 74,355; lisp: 20,485; java: 9,390; cpp: 6,695; sh: 207; xml: 58; makefile: 39
file content (103 lines) | stat: -rw-r--r-- 4,062 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html><head><title>XLISP *tracelimit*</title>

<link rel="stylesheet" type="text/css" href="reference.css">

</head>

<body>

<a href="../start.htm">Nyquist / XLISP 2.0</a>&nbsp; -&nbsp;
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>

<hr>

<h1>*tracelimit*</h1>

<hr>

<p><table cellpadding="0" cellspacing="0" style="margin-left:10px"><tbody>
<tr valign="top">
  <td><nobr>Type:</nobr></td>
  <td><nobr>&nbsp;&nbsp;-&nbsp;&nbsp;</nobr></td>
  <td width="100%"><nobr>system variable</nobr></td>
</tr>
<tr valign="top">
  <td><nobr>Source:</nobr></td>
  <td><nobr>&nbsp;&nbsp;-&nbsp;&nbsp;</nobr></td>
  <td width="100%"><nobr>xlinit.c, xldbug.c</nobr></td>
</tr>
</tbody></table></p>

<h2>Syntax</h2>

<dl>
<dt>&nbsp;*tracelimit*</dt>
</dl>

<h2>Description</h2>

<p>The *tracelimit* system variable controls the number of forms printed on
entry to the <nobr><a href="../manual/xlisp-man-004.htm">break
loop</a></nobr>. If *tracelimit* is an integer, then the integer is the
maximum number of forms that will be printed. If *tracelimit* is <a
href="nil.htm">NIL</a> or a non-integer, then all of the forms
will be printed. Note that <a href="global-tracenable.htm">*tracenable*</a>
needs to be set to a non-<a href="nil.htm">NIL</a> value to
enable the printing of back-trace information on entry to the <nobr><a
href="../manual/xlisp-man-004.htm">break loop</a></nobr>.</p>

<h2>Examples</h2>

<pre class="example">
(defun foo (x) (fee x))   <font color="#008844">; define FOO</font>
(defun fee (y) (break))   <font color="#008844">; define FEE</font>
(setq *tracenable* T)     <font color="#008844">; enable the back trace</font>
(setq *tracelimit* NIL)   <font color="#008844">; show all the entries</font>

(foo 5)                   <font color="#008844">; break: **BREAK**</font>
                          <font color="#008844">; prints Function:#&lt;Subr-BREAK...&gt;</font>
                          <font color="#008844">;        Function:#&lt;Closure-FEE...&gt;</font>
                          <font color="#008844">;        Arguments:</font>
                          <font color="#008844">;          5</font>
                          <font color="#008844">;        Function:#&lt;Closure-FOO...&gt;</font>
                          <font color="#008844">;        Arguments:</font>
                          <font color="#008844">;          5</font>

(clean-up)                <font color="#008844">; from break loop</font>
(setq *tracelimit* 2)     <font color="#008844">; show only 2 entries</font>

(foo 5)                   <font color="#008844">; break: **BREAK**</font>
                          <font color="#008844">; prints Function:#&lt;Subr-BREAK...&gt;</font>
                          <font color="#008844">;        Function:#&lt;Closure-FEE...&gt;</font>
                          <font color="#008844">;        Arguments:</font>
                          <font color="#008844">;          5</font>

(clean-up)                <font color="#008844">; from break loop</font>
</pre>

<p><b>Note:</b> <a href="global-tracenable.htm">*tracenable*</a> and
*tracelimit* system variables have to do with back trace information at
entry to a
<nobr><a href="../manual/xlisp-man-004.htm">break loop</a></nobr>
and are not related to the
<a href="trace.htm">trace</a> and
<a href="untrace.htm">untrace</a> functions.</p>

<p>See the
<a href="../manual/xlisp-man-011.htm#tracelimit">*tracelimit*</a>
system variable in the <nobr>XLISP 2.0</nobr> manual.</p>

<p><nobr>&nbsp;&nbsp;<a href="#top">Back to Top</nobr></a></p>

<hr>

<a href="../start.htm">Nyquist / XLISP 2.0</a>&nbsp; -&nbsp;
<a href="../manual/contents.htm">Contents</a> |
<a href="../tutorials/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="reference-index.htm">Reference</a>

</body></html>