diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/subr.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index d0c8517c543..a9edff6166f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -4514,7 +4514,8 @@ EVALD, FUNC, ARGS, FLAGS are as in `mapbacktrace'." | |||
| 4514 | (defun backtrace () | 4514 | (defun backtrace () |
| 4515 | "Print a trace of Lisp function calls currently active. | 4515 | "Print a trace of Lisp function calls currently active. |
| 4516 | Output stream used is value of `standard-output'." | 4516 | Output stream used is value of `standard-output'." |
| 4517 | (let ((print-level (or print-level 8))) | 4517 | (let ((print-level (or print-level 8)) |
| 4518 | (print-escape-control-characters t)) | ||
| 4518 | (mapbacktrace #'backtrace--print-frame 'backtrace))) | 4519 | (mapbacktrace #'backtrace--print-frame 'backtrace))) |
| 4519 | 4520 | ||
| 4520 | (defun backtrace-frames (&optional base) | 4521 | (defun backtrace-frames (&optional base) |