Function: wisent-set-region
wisent-set-region is a macro defined in wisent.el.gz.
Signature
(wisent-set-region START END)
Documentation
Change the region of text matched by the current nonterminal.
START and END are respectively the beginning and end positions of the region. If START or END values are not a valid positions the region is set to nil.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/wisent/wisent.el.gz
(defmacro wisent-set-region (start end)
"Change the region of text matched by the current nonterminal.
START and END are respectively the beginning and end positions of the
region. If START or END values are not a valid positions the region
is set to nil."
`(setq $region (and (number-or-marker-p ,start)
(number-or-marker-p ,end)
(cons ,start ,end))))