Function: semantic-lex-spp-set-dynamic-table

semantic-lex-spp-set-dynamic-table is a byte-compiled function defined in lex-spp.el.gz.

Signature

(semantic-lex-spp-set-dynamic-table NEW-ENTRIES)

Documentation

Set the dynamic symbol table to NEW-ENTRIES.

For use with semanticdb restoration of state.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex-spp.el.gz
(defun semantic-lex-spp-set-dynamic-table (new-entries)
  "Set the dynamic symbol table to NEW-ENTRIES.
For use with semanticdb restoration of state."
  (dolist (e new-entries)
    ;; Default obarray for below is the dynamic map.
    (semantic-lex-spp-symbol-set (car e) (cdr e))))