Function: edebug-read-backquote
edebug-read-backquote is a byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-read-backquote STREAM)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-read-backquote (stream)
;; Turn `thing into (\` thing)
(forward-char 1)
(list
(edebug-storing-offsets (1- (point)) '\`)
(edebug-read-storing-offsets stream)))