Go to the first, previous, next, last section, table of contents.


|scanLispToken

Function: |scanLispToken { [mss] -> [mss start stop line typ] }
file: job.t
package: muf
status: alpha

The |scanLispToken function is a special hack implementing the heart of the Lisp Reader. The return values are as for the other |scan-token-* functions, except for the typ return value, which on return will be one of:

lisp:stateMacro
A macro character has been encountered. The corresponding macro function should be called.
lisp:stateWhitespace
A token consisting of whitespace has been encountered.
lisp:stateSymbol
A token with the syntax of a lisp symbol, potnum or dot has been encountered.


Go to the first, previous, next, last section, table of contents.