diff options
| author | Erik Naggum <erik@naggum.no> | 1995-11-06 18:31:51 +0000 |
|---|---|---|
| committer | Erik Naggum <erik@naggum.no> | 1995-11-06 18:31:51 +0000 |
| commit | 2f004501b960b3e62e88bf52933c5b02034d6988 (patch) | |
| tree | ae50968ce42fd1b029584c695aa7bf6e794a9ed5 /src/print.c | |
| parent | 1f6382492815fd94710ecbe2ed78d59e2ea015a5 (diff) | |
| download | emacs-2f004501b960b3e62e88bf52933c5b02034d6988.tar.gz | |
(debug_print): Print newline to stderr, too.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 6fff1a54407..88ed35229fd 100644 --- a/src/print.c +++ b/src/print.c @@ -627,7 +627,7 @@ debug_print (arg) Lisp_Object arg; { Fprin1 (arg, Qexternal_debugging_output); - printf ("\n"); + fprintf (stderr, "\n"); } #ifdef LISP_FLOAT_TYPE |
