--- a/template-pre/iar4-linker-config-mode.el Sun Jan 24 13:18:40 2010 +0200
+++ b/template-pre/iar4-linker-config-mode.el Mon Jan 25 23:35:10 2010 +0200
@@ -1,4 +1,21 @@
+;;; iar-linker-config-mode.el --- major mode for highlighting IAR Embedded Workbench 4.x linker scripts
+
;; DO NOT EDIT COMMENT! TAG: iar4-linker-config-mode
+
+;; Copyright (C) 2009, 2010 by Oleksandr Gavenko <gavenkoa@gmail.com>
+
+;; Author: Oleksandr Gavenko <gavenkoa@gmail.com>
+;; Maintainer: Oleksandr Gavenko <gavenkoa@gmail.com>
+;; Created: 2009-11-04
+;; Version: 0.1
+;; Keywords: languages
+
+;;; Commentary:
+;;
+;; Very pure highlighting and not all available syntax.
+
+;;; Code:
+
(define-generic-mode iar4-linker-config-mode
'("// " ("/*" . "*/"))
nil
@@ -29,3 +46,4 @@
(lambda () (setq comment-start "// " comment-end ""))
)
"Generic mode for iar linker config files.")
+;;; iar4-linker-config-mode.el ends here