Function: backtrace--single-line
backtrace--single-line is a byte-compiled function defined in
backtrace.el.gz.
Signature
(backtrace--single-line)
Documentation
Replace line breaks and following indentation with spaces.
Works on the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defun backtrace--single-line ()
"Replace line breaks and following indentation with spaces.
Works on the current buffer."
(goto-char (point-min))
(while (re-search-forward "\n[[:blank:]]*" nil t)
(replace-match " ")))