# HG changeset patch # User Oleksandr Gavenko # Date 1264706980 -7200 # Node ID 7c18567f0754478abfba293c45ec5c51d9f423b5 # Parent 3b0d646154dc13c39c17d9fba42d5ab10b73cefe Added autoload magic comment for main mode function. diff -r 3b0d646154dc -r 7c18567f0754 lisp/iar-linker-config-mode.el --- a/lisp/iar-linker-config-mode.el Thu Jan 28 21:28:44 2010 +0200 +++ b/lisp/iar-linker-config-mode.el Thu Jan 28 21:29:40 2010 +0200 @@ -14,6 +14,7 @@ ;;; Code: +;;;###autoload (define-generic-mode iar-linker-config-mode '("// " ("/*" . "*/")) '("zeroinit" "code" "readwrite" "rw" "readonly" "ro") diff -r 3b0d646154dc -r 7c18567f0754 lisp/iar4-linker-config-mode.el --- a/lisp/iar4-linker-config-mode.el Thu Jan 28 21:28:44 2010 +0200 +++ b/lisp/iar4-linker-config-mode.el Thu Jan 28 21:29:40 2010 +0200 @@ -14,6 +14,7 @@ ;;; Code: +;;;###autoload (define-generic-mode iar4-linker-config-mode '("// " ("/*" . "*/")) nil diff -r 3b0d646154dc -r 7c18567f0754 lisp/nsis-mode.el --- a/lisp/nsis-mode.el Thu Jan 28 21:28:44 2010 +0200 +++ b/lisp/nsis-mode.el Thu Jan 28 21:29:40 2010 +0200 @@ -14,6 +14,7 @@ ;;; Code: +;;;###autoload (define-generic-mode 'nsis-mode (list ?\;) '("Section" "SectionEnd" "Function" "FunctionEnd" "Call" "Goto")