replace frame implementation with VM frames
[bpt/guile.git] / libguile / backtrace.c
1 /* Printing of backtraces and error messages
2 * Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004, 2006, 2009 Free Software Foundation
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <ctype.h>
26 #include <assert.h>
27
28 #include "libguile/_scm.h"
29
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33 #ifdef HAVE_IO_H
34 #include <io.h>
35 #endif
36
37 #include "libguile/stacks.h"
38 #include "libguile/srcprop.h"
39 #include "libguile/struct.h"
40 #include "libguile/strports.h"
41 #include "libguile/throw.h"
42 #include "libguile/fluids.h"
43 #include "libguile/ports.h"
44 #include "libguile/strings.h"
45 #include "libguile/dynwind.h"
46 #include "libguile/frames.h"
47
48 #include "libguile/validate.h"
49 #include "libguile/lang.h"
50 #include "libguile/backtrace.h"
51 #include "libguile/filesys.h"
52 #include "libguile/private-options.h"
53
54 /* {Error reporting and backtraces}
55 *
56 * Note that these functions shouldn't generate errors themselves.
57 */
58
59 /* Print parameters for error messages. */
60
61 #define DISPLAY_ERROR_MESSAGE_MAX_LEVEL 7
62 #define DISPLAY_ERROR_MESSAGE_MAX_LENGTH 10
63
64 /* Print parameters for failing expressions in error messages.
65 * (See also `print_params' below for backtrace print parameters.)
66 */
67
68 #define DISPLAY_EXPRESSION_MAX_LEVEL 2
69 #define DISPLAY_EXPRESSION_MAX_LENGTH 3
70
71 #undef SCM_ASSERT
72 #define SCM_ASSERT(_cond, _arg, _pos, _subr) \
73 if (!(_cond)) \
74 return SCM_BOOL_F;
75
76 SCM scm_the_last_stack_fluid_var;
77
78 static void
79 display_header (SCM source, SCM port)
80 {
81 scm_puts ("ERROR", port);
82 scm_puts (": ", port);
83 }
84
85
86 struct display_error_message_data {
87 SCM message;
88 SCM args;
89 SCM port;
90 scm_print_state *pstate;
91 int old_fancyp;
92 int old_level;
93 int old_length;
94 };
95
96 static SCM
97 display_error_message (struct display_error_message_data *d)
98 {
99 if (scm_is_string (d->message) && scm_is_true (scm_list_p (d->args)))
100 scm_simple_format (d->port, d->message, d->args);
101 else
102 scm_display (d->message, d->port);
103 scm_newline (d->port);
104 return SCM_UNSPECIFIED;
105 }
106
107 static void
108 before_display_error_message (struct display_error_message_data *d)
109 {
110 scm_print_state *pstate = d->pstate;
111 d->old_fancyp = pstate->fancyp;
112 d->old_level = pstate->level;
113 d->old_length = pstate->length;
114 pstate->fancyp = 1;
115 pstate->level = DISPLAY_ERROR_MESSAGE_MAX_LEVEL;
116 pstate->length = DISPLAY_ERROR_MESSAGE_MAX_LENGTH;
117 }
118
119 static void
120 after_display_error_message (struct display_error_message_data *d)
121 {
122 scm_print_state *pstate = d->pstate;
123 pstate->fancyp = d->old_fancyp;
124 pstate->level = d->old_level;
125 pstate->length = d->old_length;
126 }
127
128 void
129 scm_display_error_message (SCM message, SCM args, SCM port)
130 {
131 struct display_error_message_data d;
132 SCM print_state;
133 scm_print_state *pstate;
134
135 port = scm_i_port_with_print_state (port, SCM_UNDEFINED);
136 print_state = SCM_PORT_WITH_PS_PS (port);
137 pstate = SCM_PRINT_STATE (print_state);
138
139 d.message = message;
140 d.args = args;
141 d.port = port;
142 d.pstate = pstate;
143 scm_internal_dynamic_wind ((scm_t_guard) before_display_error_message,
144 (scm_t_inner) display_error_message,
145 (scm_t_guard) after_display_error_message,
146 &d,
147 &d);
148 }
149
150 static void
151 display_expression (SCM frame, SCM pname, SCM source, SCM port)
152 {
153 SCM print_state = scm_make_print_state ();
154 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
155 pstate->writingp = 0;
156 pstate->fancyp = 1;
157 pstate->level = DISPLAY_EXPRESSION_MAX_LEVEL;
158 pstate->length = DISPLAY_EXPRESSION_MAX_LENGTH;
159 if (scm_is_symbol (pname) || scm_is_string (pname))
160 {
161 scm_puts ("In procedure ", port);
162 scm_iprin1 (pname, port, pstate);
163 }
164 scm_puts (":\n", port);
165 scm_free_print_state (print_state);
166 }
167
168 struct display_error_args {
169 SCM stack;
170 SCM port;
171 SCM subr;
172 SCM message;
173 SCM args;
174 SCM rest;
175 };
176
177 static SCM
178 display_error_body (struct display_error_args *a)
179 {
180 SCM current_frame = SCM_BOOL_F;
181 SCM source = SCM_BOOL_F;
182 SCM pname = a->subr;
183
184 if (scm_is_symbol (pname) || scm_is_string (pname))
185 {
186 display_header (source, a->port);
187 display_expression (current_frame, pname, source, a->port);
188 }
189 display_header (source, a->port);
190 scm_display_error_message (a->message, a->args, a->port);
191 return SCM_UNSPECIFIED;
192 }
193
194 struct display_error_handler_data {
195 char *mode;
196 SCM port;
197 };
198
199 /* This is the exception handler for error reporting routines.
200 Note that it is very important that this handler *doesn't* try to
201 print more than the error tag, since the error very probably is
202 caused by an erroneous print call-back routine. If we would
203 try to print all objects, we would enter an infinite loop. */
204 static SCM
205 display_error_handler (struct display_error_handler_data *data,
206 SCM tag, SCM args SCM_UNUSED)
207 {
208 SCM print_state = scm_make_print_state ();
209 scm_puts ("\nException during displaying of ", data->port);
210 scm_puts (data->mode, data->port);
211 scm_puts (": ", data->port);
212 scm_iprin1 (tag, data->port, SCM_PRINT_STATE (print_state));
213 scm_putc ('\n', data->port);
214 return SCM_UNSPECIFIED;
215 }
216
217
218 /* The function scm_i_display_error prints out a detailed error message. This
219 * function will be called directly within libguile to signal error messages.
220 * No parameter checks will be performed by scm_i_display_error. Thus, User
221 * code should rather use the function scm_display_error.
222 */
223 void
224 scm_i_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest)
225 {
226 struct display_error_args a;
227 struct display_error_handler_data data;
228 a.stack = stack;
229 a.port = port;
230 a.subr = subr;
231 a.message = message;
232 a.args = args;
233 a.rest = rest;
234 data.mode = "error";
235 data.port = port;
236 scm_internal_catch (SCM_BOOL_T,
237 (scm_t_catch_body) display_error_body, &a,
238 (scm_t_catch_handler) display_error_handler, &data);
239 }
240
241
242 SCM_DEFINE (scm_display_error, "display-error", 6, 0, 0,
243 (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest),
244 "Display an error message to the output port @var{port}.\n"
245 "@var{stack} is the saved stack for the error, @var{subr} is\n"
246 "the name of the procedure in which the error occurred and\n"
247 "@var{message} is the actual error message, which may contain\n"
248 "formatting instructions. These will format the arguments in\n"
249 "the list @var{args} accordingly. @var{rest} is currently\n"
250 "ignored.")
251 #define FUNC_NAME s_scm_display_error
252 {
253 SCM_VALIDATE_OUTPUT_PORT (2, port);
254
255 scm_i_display_error (stack, port, subr, message, args, rest);
256
257 return SCM_UNSPECIFIED;
258 }
259 #undef FUNC_NAME
260
261
262 typedef struct {
263 int level;
264 int length;
265 } print_params_t;
266
267 static int n_print_params = 9;
268 static print_params_t default_print_params[] = {
269 { 4, 9 }, { 4, 3 },
270 { 3, 4 }, { 3, 3 },
271 { 2, 4 }, { 2, 3 },
272 { 1, 4 }, { 1, 3 }, { 1, 2 }
273 };
274 static print_params_t *print_params = default_print_params;
275
276 #ifdef GUILE_DEBUG
277 SCM_DEFINE (scm_set_print_params_x, "set-print-params!", 1, 0, 0,
278 (SCM params),
279 "Set the print parameters to the values from @var{params}.\n"
280 "@var{params} must be a list of two-element lists which must\n"
281 "hold two integer values.")
282 #define FUNC_NAME s_scm_set_print_params_x
283 {
284 int i;
285 int n;
286 SCM ls;
287 print_params_t *new_params;
288
289 SCM_VALIDATE_NONEMPTYLIST_COPYLEN (2, params, n);
290 for (ls = params; !SCM_NULL_OR_NIL_P (ls); ls = SCM_CDR (ls))
291 SCM_ASSERT (scm_ilength (SCM_CAR (params)) == 2
292 && scm_is_unsigned_integer (SCM_CAAR (ls), 0, INT_MAX)
293 && scm_is_unsigned_integer (SCM_CADAR (ls), 0, INT_MAX),
294 params,
295 SCM_ARG2,
296 s_scm_set_print_params_x);
297 new_params = scm_malloc (n * sizeof (print_params_t));
298 if (print_params != default_print_params)
299 free (print_params);
300 print_params = new_params;
301 for (i = 0; i < n; ++i)
302 {
303 print_params[i].level = scm_to_int (SCM_CAAR (params));
304 print_params[i].length = scm_to_int (SCM_CADAR (params));
305 params = SCM_CDR (params);
306 }
307 n_print_params = n;
308 return SCM_UNSPECIFIED;
309 }
310 #undef FUNC_NAME
311 #endif
312
313 static void
314 indent (int n, SCM port)
315 {
316 int i;
317 for (i = 0; i < n; ++i)
318 scm_putc (' ', port);
319 }
320
321 static void
322 display_frame_expr (char *hdr, SCM exp, char *tlr, int indentation, SCM sport, SCM port, scm_print_state *pstate)
323 {
324 int i = 0, n;
325 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (sport);
326 do
327 {
328 pstate->length = print_params[i].length;
329 ptob->seek (sport, 0, SEEK_SET);
330 if (scm_is_pair (exp))
331 {
332 pstate->level = print_params[i].level - 1;
333 scm_iprlist (hdr, exp, tlr[0], sport, pstate);
334 scm_puts (&tlr[1], sport);
335 }
336 else
337 {
338 pstate->level = print_params[i].level;
339 scm_iprin1 (exp, sport, pstate);
340 }
341 ptob->flush (sport);
342 n = ptob->seek (sport, 0, SEEK_CUR);
343 ++i;
344 }
345 while (indentation + n > SCM_BACKTRACE_WIDTH && i < n_print_params);
346 ptob->truncate (sport, n);
347
348 scm_display (scm_strport_to_string (sport), port);
349 }
350
351 static void
352 display_application (SCM frame, int indentation, SCM sport, SCM port, scm_print_state *pstate)
353 {
354 SCM proc = scm_frame_procedure (frame);
355 SCM name = (scm_is_true (scm_procedure_p (proc))
356 ? scm_procedure_name (proc)
357 : SCM_BOOL_F);
358 display_frame_expr ("[",
359 scm_cons (scm_is_true (name) ? name : proc,
360 scm_frame_arguments (frame)),
361 "]",
362 indentation,
363 sport,
364 port,
365 pstate);
366 }
367
368 SCM_DEFINE (scm_display_application, "display-application", 1, 2, 0,
369 (SCM frame, SCM port, SCM indent),
370 "Display a procedure application @var{frame} to the output port\n"
371 "@var{port}. @var{indent} specifies the indentation of the\n"
372 "output.")
373 #define FUNC_NAME s_scm_display_application
374 {
375 SCM_VALIDATE_FRAME (1, frame);
376 if (SCM_UNBNDP (port))
377 port = scm_current_output_port ();
378 else
379 SCM_VALIDATE_OPOUTPORT (2, port);
380 if (SCM_UNBNDP (indent))
381 indent = SCM_INUM0;
382
383 /* Display an application. */
384 {
385 SCM sport, print_state;
386 scm_print_state *pstate;
387
388 /* Create a string port used for adaptation of printing parameters. */
389 sport = scm_mkstrport (SCM_INUM0,
390 scm_make_string (scm_from_int (240),
391 SCM_UNDEFINED),
392 SCM_OPN | SCM_WRTNG,
393 FUNC_NAME);
394
395 /* Create a print state for printing of frames. */
396 print_state = scm_make_print_state ();
397 pstate = SCM_PRINT_STATE (print_state);
398 pstate->writingp = 1;
399 pstate->fancyp = 1;
400
401 display_application (frame, scm_to_int (indent), sport, port, pstate);
402 return SCM_BOOL_T;
403 }
404 }
405 #undef FUNC_NAME
406
407 SCM_SYMBOL (sym_base, "base");
408
409 static void
410 display_backtrace_get_file_line (SCM frame, SCM *file, SCM *line)
411 {
412 SCM source = scm_frame_source (frame);
413 *file = *line = SCM_BOOL_F;
414 if (scm_is_pair (source)
415 && scm_is_pair (scm_cdr (source))
416 && scm_is_pair (scm_cddr (source))
417 && !scm_is_pair (scm_cdddr (source)))
418 {
419 /* (addr . (filename . (line . column))), from vm compilation */
420 *file = scm_cadr (source);
421 *line = scm_caddr (source);
422 }
423 }
424
425 static void
426 display_backtrace_file (frame, last_file, port, pstate)
427 SCM frame;
428 SCM *last_file;
429 SCM port;
430 scm_print_state *pstate;
431 {
432 SCM file, line;
433
434 display_backtrace_get_file_line (frame, &file, &line);
435
436 if (scm_is_true (scm_equal_p (file, *last_file)))
437 return;
438
439 *last_file = file;
440
441 scm_puts ("In ", port);
442 if (scm_is_false (file))
443 if (scm_is_false (line))
444 scm_puts ("unknown file", port);
445 else
446 scm_puts ("current input", port);
447 else
448 {
449 pstate->writingp = 0;
450 scm_iprin1 (file, port, pstate);
451 pstate->writingp = 1;
452 }
453 scm_puts (":\n", port);
454 }
455
456 static void
457 display_backtrace_file_and_line (SCM frame, SCM port, scm_print_state *pstate)
458 {
459 SCM file, line;
460
461 display_backtrace_get_file_line (frame, &file, &line);
462
463 if (scm_is_eq (SCM_PACK (SCM_SHOW_FILE_NAME), sym_base))
464 {
465 if (scm_is_false (file))
466 {
467 if (scm_is_false (line))
468 scm_putc ('?', port);
469 else
470 scm_puts ("<stdin>", port);
471 }
472 else
473 {
474 pstate -> writingp = 0;
475 #ifdef HAVE_POSIX
476 scm_iprin1 ((scm_is_string (file)?
477 scm_basename (file, SCM_UNDEFINED) : file),
478 port, pstate);
479 #else
480 scm_iprin1 (file, port, pstate);
481 #endif
482 pstate -> writingp = 1;
483 }
484
485 scm_putc (':', port);
486 }
487 else if (scm_is_true (line))
488 {
489 int i, j=0;
490 for (i = scm_to_int (line)+1; i > 0; i = i/10, j++)
491 ;
492 indent (4-j, port);
493 }
494
495 if (scm_is_false (line))
496 scm_puts (" ?", port);
497 else
498 scm_intprint (scm_to_int (line) + 1, 10, port);
499 scm_puts (": ", port);
500 }
501
502 static void
503 display_frame (SCM frame, int n, int nfield, int indentation,
504 SCM sport, SCM port, scm_print_state *pstate)
505 {
506 int i, j;
507
508 /* display file name and line number */
509 if (scm_is_true (SCM_PACK (SCM_SHOW_FILE_NAME)))
510 display_backtrace_file_and_line (frame, port, pstate);
511
512 /* Check size of frame number. */
513 for (i = 0, j = n; j > 0; ++i) j /= 10;
514
515 /* Number indentation. */
516 indent (nfield - (i ? i : 1), port);
517
518 /* Frame number. */
519 scm_iprin1 (scm_from_int (n), port, pstate);
520
521 /* Indentation. */
522 indent (indentation, port);
523
524 /* Display an application. */
525 display_application (frame, nfield + 1 + indentation, sport, port, pstate);
526 scm_putc ('\n', port);
527 }
528
529 struct display_backtrace_args {
530 SCM stack;
531 SCM port;
532 SCM first;
533 SCM depth;
534 SCM highlight_objects;
535 };
536
537 static SCM
538 display_backtrace_body (struct display_backtrace_args *a)
539 #define FUNC_NAME "display_backtrace_body"
540 {
541 int n_frames, beg, end, n, i, j;
542 int nfield, indent_p, indentation;
543 SCM frame, sport, print_state;
544 SCM last_file;
545 scm_print_state *pstate;
546
547 a->port = SCM_COERCE_OUTPORT (a->port);
548
549 /* Argument checking and extraction. */
550 SCM_VALIDATE_STACK (1, a->stack);
551 SCM_VALIDATE_OPOUTPORT (2, a->port);
552 n_frames = scm_to_int (scm_stack_length (a->stack));
553 n = scm_is_integer (a->depth) ? scm_to_int (a->depth) : SCM_BACKTRACE_DEPTH;
554 if (SCM_BACKWARDS_P)
555 {
556 beg = scm_is_integer (a->first) ? scm_to_int (a->first) : 0;
557 end = beg + n - 1;
558 if (end >= n_frames)
559 end = n_frames - 1;
560 n = end - beg + 1;
561 }
562 else
563 {
564 if (scm_is_integer (a->first))
565 {
566 beg = scm_to_int (a->first);
567 end = beg - n + 1;
568 if (end < 0)
569 end = 0;
570 }
571 else
572 {
573 beg = n - 1;
574 end = 0;
575 if (beg >= n_frames)
576 beg = n_frames - 1;
577 }
578 n = beg - end + 1;
579 }
580 SCM_ASSERT (beg >= 0 && beg < n_frames, a->first, SCM_ARG3, s_display_backtrace);
581 SCM_ASSERT (n > 0, a->depth, SCM_ARG4, s_display_backtrace);
582
583 /* Create a string port used for adaptation of printing parameters. */
584 sport = scm_mkstrport (SCM_INUM0,
585 scm_make_string (scm_from_int (240), SCM_UNDEFINED),
586 SCM_OPN | SCM_WRTNG,
587 FUNC_NAME);
588
589 /* Create a print state for printing of frames. */
590 print_state = scm_make_print_state ();
591 pstate = SCM_PRINT_STATE (print_state);
592 pstate->writingp = 1;
593 pstate->fancyp = 1;
594 pstate->highlight_objects = a->highlight_objects;
595
596 /* First find out if it's reasonable to do indentation. */
597 indent_p = 0;
598
599 /* Determine size of frame number field. */
600 j = end;
601 for (i = 0; j > 0; ++i) j /= 10;
602 nfield = i ? i : 1;
603
604 /* Print frames. */
605 indentation = 1;
606 last_file = SCM_UNDEFINED;
607 if (SCM_BACKWARDS_P)
608 end++;
609 else
610 end--;
611 for (i = beg; i != end; SCM_BACKWARDS_P ? ++i : --i)
612 {
613 frame = scm_stack_ref (a->stack, scm_from_int (i));
614 if (!scm_is_eq (SCM_PACK (SCM_SHOW_FILE_NAME), sym_base))
615 display_backtrace_file (frame, &last_file, a->port, pstate);
616 display_frame (frame, i, nfield, indentation, sport, a->port, pstate);
617 }
618
619 scm_remember_upto_here_1 (print_state);
620
621 return SCM_UNSPECIFIED;
622 }
623 #undef FUNC_NAME
624
625 SCM_DEFINE (scm_display_backtrace_with_highlights, "display-backtrace", 2, 3, 0,
626 (SCM stack, SCM port, SCM first, SCM depth, SCM highlights),
627 "Display a backtrace to the output port @var{port}. @var{stack}\n"
628 "is the stack to take the backtrace from, @var{first} specifies\n"
629 "where in the stack to start and @var{depth} how many frames\n"
630 "to display. @var{first} and @var{depth} can be @code{#f},\n"
631 "which means that default values will be used.\n"
632 "If @var{highlights} is given it should be a list; the elements\n"
633 "of this list will be highlighted wherever they appear in the\n"
634 "backtrace.")
635 #define FUNC_NAME s_scm_display_backtrace_with_highlights
636 {
637 struct display_backtrace_args a;
638 struct display_error_handler_data data;
639 a.stack = stack;
640 a.port = port;
641 a.first = first;
642 a.depth = depth;
643 if (SCM_UNBNDP (highlights))
644 a.highlight_objects = SCM_EOL;
645 else
646 a.highlight_objects = highlights;
647 data.mode = "backtrace";
648 data.port = port;
649 scm_internal_catch (SCM_BOOL_T,
650 (scm_t_catch_body) display_backtrace_body, &a,
651 (scm_t_catch_handler) display_error_handler, &data);
652 return SCM_UNSPECIFIED;
653 }
654 #undef FUNC_NAME
655
656 SCM
657 scm_display_backtrace (SCM stack, SCM port, SCM first, SCM depth)
658 {
659 return scm_display_backtrace_with_highlights (stack, port, first, depth,
660 SCM_EOL);
661 }
662
663 SCM_VARIABLE (scm_has_shown_backtrace_hint_p_var, "has-shown-backtrace-hint?");
664
665 SCM_DEFINE (scm_backtrace_with_highlights, "backtrace", 0, 1, 0,
666 (SCM highlights),
667 "Display a backtrace of the stack saved by the last error\n"
668 "to the current output port. If @var{highlights} is given\n"
669 "it should be a list; the elements of this list will be\n"
670 "highlighted wherever they appear in the backtrace.")
671 #define FUNC_NAME s_scm_backtrace_with_highlights
672 {
673 SCM port = scm_current_output_port ();
674 SCM the_last_stack =
675 scm_fluid_ref (SCM_VARIABLE_REF (scm_the_last_stack_fluid_var));
676
677 if (SCM_UNBNDP (highlights))
678 highlights = SCM_EOL;
679
680 if (scm_is_true (the_last_stack))
681 {
682 scm_newline (port);
683 scm_puts ("Backtrace:\n", port);
684 scm_display_backtrace_with_highlights (the_last_stack,
685 port,
686 SCM_BOOL_F,
687 SCM_BOOL_F,
688 highlights);
689 scm_newline (port);
690 if (scm_is_false (SCM_VARIABLE_REF (scm_has_shown_backtrace_hint_p_var))
691 && !SCM_BACKTRACE_P)
692 {
693 scm_puts ("Type \"(debug-enable 'backtrace)\" if you would like "
694 "a backtrace\n"
695 "automatically if an error occurs in the future.\n",
696 port);
697 SCM_VARIABLE_SET (scm_has_shown_backtrace_hint_p_var, SCM_BOOL_T);
698 }
699 }
700 else
701 {
702 scm_puts ("No backtrace available.\n", port);
703 }
704 return SCM_UNSPECIFIED;
705 }
706 #undef FUNC_NAME
707
708 SCM
709 scm_backtrace (void)
710 {
711 return scm_backtrace_with_highlights (SCM_EOL);
712 }
713
714 \f
715
716 void
717 scm_init_backtrace ()
718 {
719 SCM f = scm_make_fluid ();
720 scm_the_last_stack_fluid_var = scm_c_define ("the-last-stack", f);
721
722 #include "libguile/backtrace.x"
723 }
724
725 /*
726 Local Variables:
727 c-file-style: "gnu"
728 End:
729 */