aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/print.c9
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")
598 598
599 return character; 599 return character;
600} 600}
601
602/* This is the interface for debugging printing. */
603
604void
605debug_print (arg)
606 Lisp_Object arg;
607{
608 Fprin1 (arg, Qexternal_debugging_output);
609}
601 610
602#ifdef LISP_FLOAT_TYPE 611#ifdef LISP_FLOAT_TYPE
603 612