diff options
| author | Noam Postavsky | 2018-01-28 18:16:48 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2018-01-30 22:29:13 -0500 |
| commit | 2b35ed0b0c49698337758004bd5e6062a3aaffab (patch) | |
| tree | 461b15b1b6e34f9176a4522e574a0979ae67f664 /src | |
| parent | db6564cde0a9001311c38600d61f503e9d32bf0b (diff) | |
| download | emacs-2b35ed0b0c49698337758004bd5e6062a3aaffab.tar.gz emacs-2b35ed0b0c49698337758004bd5e6062a3aaffab.zip | |
Document external-debugging-output in the Elisp Manual (Bug#24051)
* doc/lispref/streams.texi (Output Streams): List
external-debugging-output.
* src/print.c (Fexternal_debugging_output): Quote `print' in
docstring.
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 d140f9973f5..af1e85f6e7b 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -748,7 +748,7 @@ is used instead. */) | |||
| 748 | 748 | ||
| 749 | DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, | 749 | DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, |
| 750 | doc: /* Write CHARACTER to stderr. | 750 | doc: /* Write CHARACTER to stderr. |
| 751 | You can call print while debugging emacs, and pass it this function | 751 | You can call `print' while debugging emacs, and pass it this function |
| 752 | to make it write to the debugging output. */) | 752 | to make it write to the debugging output. */) |
| 753 | (Lisp_Object character) | 753 | (Lisp_Object character) |
| 754 | { | 754 | { |