diff options
author | Noam Postavsky <npostavs@gmail.com> | 2018-01-28 18:16:48 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-01-30 22:29:13 -0500 |
commit | 2b35ed0b0c49698337758004bd5e6062a3aaffab (patch) | |
tree | 461b15b1b6e34f9176a4522e574a0979ae67f664 /src | |
parent | db6564cde0a9001311c38600d61f503e9d32bf0b (diff) | |
download | emacs-2b35ed0b0c49698337758004bd5e6062a3aaffab.tar.gz emacs-2b35ed0b0c49698337758004bd5e6062a3aaffab.tar.bz2 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. */) DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, doc: /* Write CHARACTER to stderr. -You can call print while debugging emacs, and pass it this function +You can call `print' while debugging emacs, and pass it this function to make it write to the debugging output. */) (Lisp_Object character) { |