blob: 3351dcfc25541a18de84d7e8f58a193b791ae957 (
plain)
1
2
3
4
5
6
7
|
(defun token= (type &optional value)
"Check that the next token conforms to TYPE and VALUE.
This checks it back and forth and moves the point after the
token."
(and (ess-jump-token type value)
(ess-token-before= type value)))
|