diff options
author | Joel Holdbrooks <cjholdbrooks@gmail.com> | 2012-07-03 18:17:56 -0700 |
---|---|---|
committer | Joel Holdbrooks <cjholdbrooks@gmail.com> | 2012-07-03 18:17:56 -0700 |
commit | b9cf7f67d869eead647e237d963ba2db2fdfbc4f (patch) | |
tree | 3033dbf5d0dd2fc88399cad8db5eb12903f278d8 | |
parent | a4b8b094da5525354cb8a927761385825236c5a1 (diff) | |
download | coderay-b9cf7f67d869eead647e237d963ba2db2fdfbc4f.tar.gz |
add "id" token kind
-rwxr-xr-x | lib/coderay/token_kinds.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb index 3b8d07e..41a89e4 100755 --- a/lib/coderay/token_kinds.rb +++ b/lib/coderay/token_kinds.rb @@ -39,6 +39,7 @@ module CodeRay :function => 'function', :global_variable => 'global-variable', :hex => 'hex', + :id => 'id', :imaginary => 'imaginary', :important => 'important', :include => 'include', |