Function: backtrace-toggle-print-gensym
backtrace-toggle-print-gensym is an interactive and byte-compiled
function defined in backtrace.el.gz.
Signature
(backtrace-toggle-print-gensym &optional ALL)
Documentation
Toggle print-gensym for the backtrace frame at point.
With prefix argument ALL, toggle the default value bound to
print-gensym for all the frames in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/backtrace.el.gz
(defun backtrace-toggle-print-gensym (&optional all)
"Toggle `print-gensym' for the backtrace frame at point.
With prefix argument ALL, toggle the default value bound to
`print-gensym' for all the frames in the buffer."
(interactive "P")
(backtrace--toggle-feature :print-gensym all))