Function: edebug-read-quote

edebug-read-quote is a byte-compiled function defined in edebug.el.gz.

Signature

(edebug-read-quote STREAM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-read-quote (stream)
  ;; Turn 'thing into (quote thing)
  (forward-char 1)
  (list
   (edebug-storing-offsets (1- (point)) 'quote)
   (edebug-read-storing-offsets stream)))