diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-25 19:19:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-25 19:19:05 +0000 |
commit | 01006a742492c8e211c21e37943cb87429df1237 (patch) | |
tree | b000939a758c02789d3e4a2e5604503c2436c868 /src/print.c | |
parent | 7209a65dd17a14b72697e47a2c7e30bca1bb444a (diff) | |
download | emacs-01006a742492c8e211c21e37943cb87429df1237.tar.gz |
(debug_print): New function.
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/print.c b/src/print.c index 8e4a05fe3af..a5f1f97907f 100644 --- a/src/print.c +++ b/src/print.c @@ -598,6 +598,15 @@ to make it write to the debugging output.\n") return character; } + +/* This is the interface for debugging printing. */ + +void +debug_print (arg) + Lisp_Object arg; +{ + Fprin1 (arg, Qexternal_debugging_output); +} #ifdef LISP_FLOAT_TYPE |