enscript/clisp.st @ 9dcc4278dc41

Add enscript bullshit
author Steve Losh <steve@stevelosh.com>
date Sat, 13 Apr 2019 10:04:13 -0400
parents (none)
children (none)
/**
 * Name: clisp
 * Description: Common Lisp.
 */

state clisp extends HighlightEntry
{
  /* Comments. */
  /(;.*)(\n)/ {
    comment_face (true);
    language_print ($1);
    comment_face (false);
    language_print ($2);
  }

  /* String constants. */
  /\"/ {
    string_face (true);
    language_print ($0);
    call (c_string);
    string_face (false);
  }

}


/*
Local variables:
mode: c
End:
*/