diff options
| author | Erik Naggum | 1995-11-06 18:31:51 +0000 |
|---|---|---|
| committer | Erik Naggum | 1995-11-06 18:31:51 +0000 |
| commit | 2f004501b960b3e62e88bf52933c5b02034d6988 (patch) | |
| tree | ae50968ce42fd1b029584c695aa7bf6e794a9ed5 /src | |
| parent | 1f6382492815fd94710ecbe2ed78d59e2ea015a5 (diff) | |
| download | emacs-2f004501b960b3e62e88bf52933c5b02034d6988.tar.gz emacs-2f004501b960b3e62e88bf52933c5b02034d6988.zip | |
(debug_print): Print newline to stderr, too.
Diffstat (limited to 'src')
| -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) | |||
| 627 | Lisp_Object arg; | 627 | Lisp_Object arg; |
| 628 | { | 628 | { |
| 629 | Fprin1 (arg, Qexternal_debugging_output); | 629 | Fprin1 (arg, Qexternal_debugging_output); |
| 630 | printf ("\n"); | 630 | fprintf (stderr, "\n"); |
| 631 | } | 631 | } |
| 632 | 632 | ||
| 633 | #ifdef LISP_FLOAT_TYPE | 633 | #ifdef LISP_FLOAT_TYPE |