Skip to content

Commit

Permalink
Remove *.m alias from Objective C, closes #819
Browse files Browse the repository at this point in the history
  • Loading branch information
Sannis committed May 5, 2015
1 parent f3d6668 commit 837f248
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/css-classes-reference.rst
Expand Up @@ -622,8 +622,8 @@ C++ ("cpp", "c", "cc", "h", "c++", "h++", "hpp")
* ``comment``: comment
* ``preprocessor``: preprocessor directive

Objective C ("objectivec", "m", "mm", "objc", "obj-c")
------------------------------------------------------
Objective C ("objectivec", "mm", "objc", "obj-c")
-------------------------------------------------

* ``keyword``: keyword
* ``built_in``: Cocoa/Cocoa Touch constants and classes
Expand Down
2 changes: 1 addition & 1 deletion src/languages/objectivec.js
Expand Up @@ -29,7 +29,7 @@ function(hljs) {
var LEXEMES = /[a-zA-Z@][a-zA-Z0-9_]*/;
var CLASS_KEYWORDS = '@interface @class @protocol @implementation';
return {
aliases: ['m', 'mm', 'objc', 'obj-c'],
aliases: ['mm', 'objc', 'obj-c'],
keywords: OBJC_KEYWORDS,
lexemes: LEXEMES,
illegal: '</',
Expand Down

0 comments on commit 837f248

Please sign in to comment.