Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

renamed Nimrod to Nim #155

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ modified by me for consistency/bug fixing.
Please send any bug reports to [email protected], or use the bug report tracker
at sourceforge (http://sourceforge.net/tracker/?group_id=114997&atid=670231)

Version 1.0.9.2
- renamed Nimrod to Nim (mrtuxa)

Version 1.0.9.1
- Added language files
* OpenSSH config (Kevin Ernst)
Expand Down
2 changes: 1 addition & 1 deletion THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ PEOPE WHO MADE LANGUAGE FILES
- Nagios Albéric de Pertat
- NewLisp cormullion
- nginx Cliff Wells, Deoren Moor, Thomas Joiner
- Nimrod Dennis Felsing
- Nim Dennis Felsing, mrtuxa
- NSIS Tux, Deguix
- Oberon-2 Mike Mol
- Objeck Progr. Lang. Randy Hollines
Expand Down
10 changes: 3 additions & 7 deletions src/geshi/nimrod.php → src/geshi/nim.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/*************************************************************************************
* nimrod.php
* nim.php
* ----------
* Author: Dennis Felsing ([email protected])
* Copyright: (c) 2014 Dennis Felsing
* Release Version: 1.0.9.1
* Date Started: 2014/07/15
*
* Nimrod language file for GeSHi.
* Nim language file for GeSHi.
*
* CHANGES
* -------
Expand Down Expand Up @@ -39,7 +39,7 @@
************************************************************************************/

$language_data = array (
'LANG_NAME' => 'Nimrod',
'LANG_NAME' => 'Nim',
'COMMENT_SINGLE' => array(1 => '#'),
'COMMENT_MULTI' => array(),
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
Expand All @@ -53,10 +53,6 @@
GESHI_NUMBER_FLT_SCI_SHORT | GESHI_NUMBER_FLT_SCI_ZERO,
'KEYWORDS' => array(

/*
** Set 1: reserved words
** http://nimrod-lang.org/manual.html#identifiers-keywords
*/
1 => array(
'addr', 'and', 'as', 'asm', 'atomic',
'bind', 'block', 'break',
Expand Down