Function: semantic-dump-parser-warnings

semantic-dump-parser-warnings is an interactive and byte-compiled function defined in semantic.el.gz.

Signature

(semantic-dump-parser-warnings)

Documentation

Dump any parser warnings.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defun semantic-dump-parser-warnings ()
  "Dump any parser warnings."
  (interactive)
  (if semantic-parser-warnings
      (let ((pw semantic-parser-warnings))
	(pop-to-buffer "*Parser Warnings*")
	(require 'pp)
	(erase-buffer)
	(insert (pp-to-string pw))
	(goto-char (point-min)))
    (message "No parser warnings.")))