Function: rng-c-parse-follow-annotations

rng-c-parse-follow-annotations is a byte-compiled function defined in rng-cmpct.el.gz.

Signature

(rng-c-parse-follow-annotations OBJ)

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
(defun rng-c-parse-follow-annotations (obj)
  (while (string-equal rng-c-current-token ">>")
    (rng-c-advance)
    (if (rng-c-current-token-prefixed-name-p)
	(rng-c-advance)
      (rng-c-parse-identifier-or-keyword))
    (rng-c-parse-annotation-body t))
  obj)