Function: hif-token-stringification
hif-token-stringification is a byte-compiled function defined in
hideif.el.gz.
Signature
(hif-token-stringification L)
Documentation
Scan token list for hif-stringify (#) token and stringify the next token.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-token-stringification (l)
"Scan token list for `hif-stringify' (`#') token and stringify the next token."
(if (memq 'hif-stringify l)
(let (result)
(while l
(push (if (eq (car l) 'hif-stringify)
(prog1
(if (cadr l)
(hif-stringify (cadr l))
(error "No token to stringify"))
(setq l (cdr l)))
(car l))
result)
(setq l (cdr l)))
(nreverse result))
;; no `#' presents
l))