git@sv
/
enscript.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added a convertfontto.sh script
[enscript.git]
/
states
/
hl
/
c_comment.st
1
/*
2
* Read one C-comment. C-styled comments are needed in many
3
* languages. Therefore it is implemented in a separate file to ease
4
* its reusing.
5
*/
6
7
state c_comment extends Highlight
8
{
9
/\*\\\// {
10
language_print ($0);
11
return;
12
}
13
}
14
15
\f
16
/*
17
Local variables:
18
mode: c
19
End:
20
*/