Last change
on this file was
13067,
checked in by rme, 11 years ago
|
Update copyright notices.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
864 bytes
|
Line | |
---|
1 | /* |
---|
2 | Copyright (C) 2009 Clozure Associates |
---|
3 | Copyright (C) 1994-2001 Digitool, Inc |
---|
4 | This file is part of Clozure CL. |
---|
5 | |
---|
6 | Clozure CL is licensed under the terms of the Lisp Lesser GNU Public |
---|
7 | License , known as the LLGPL and distributed with Clozure CL as the |
---|
8 | file "LICENSE". The LLGPL consists of a preamble and the LGPL, |
---|
9 | which is distributed with Clozure CL as the file "LGPL". Where these |
---|
10 | conflict, the preamble takes precedence. |
---|
11 | |
---|
12 | Clozure CL is referenced in the preamble as the "LIBRARY." |
---|
13 | |
---|
14 | The LLGPL is also available online at |
---|
15 | http://opensource.franz.com/preamble.html |
---|
16 | */ |
---|
17 | |
---|
18 | #include "lispdcmd.h" |
---|
19 | |
---|
20 | |
---|
21 | void |
---|
22 | plprint(ExceptionInformation *xp, LispObj obj) |
---|
23 | { |
---|
24 | if (lisp_nil == (LispObj) NULL) { |
---|
25 | fprintf(dbgout,"can't find lisp NIL; lisp process not active process ?\n"); |
---|
26 | } else { |
---|
27 | Dprintf("\n%s", print_lisp_object(obj)); |
---|
28 | } |
---|
29 | } |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.