Function: gdb-mi--parse-value
gdb-mi--parse-value is a byte-compiled function defined in
gdb-mi.el.gz.
Signature
(gdb-mi--parse-value)
Documentation
Parse a value.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-mi--parse-value ()
"Parse a value."
(cond
((eq (following-char) ?\{)
(forward-char)
(gdb-mi--parse-tuple-or-list ?\}))
((eq (following-char) ?\[)
(forward-char)
(gdb-mi--parse-tuple-or-list ?\]))
((eq (following-char) ?\")
(forward-char)
(gdb-mi--parse-c-string))
(t (error "Bad start of result or value: %c" (following-char)))))