Function: rng-c-translate-position
rng-c-translate-position is a byte-compiled function defined in
rng-cmpct.el.gz.
Signature
(rng-c-translate-position POS)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
(defun rng-c-translate-position (pos)
(let ((tem rng-c-escape-positions))
(while (and tem
(> (caar tem) pos))
(setq tem (cdr tem)))
(if tem
(+ pos (cdar tem))
pos)))