Add autoloads for auto-mode-alist to haml/sass-mode.el.

Also added a footer. Both these are needed for ELPA submission.
This commit is contained in:
Phil Hagelberg 2009-01-14 10:50:29 -08:00
parent f312b31e95
commit 1880b8772e
2 changed files with 8 additions and 2 deletions

View File

@ -419,6 +419,9 @@ the current line."
"Return the indentation string for `haml-indent-offset'."
(mapconcat 'identity (make-list haml-indent-offset " ") ""))
;; Setup/Activation
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.haml$" . haml-mode))
;; Setup/Activation
(provide 'haml-mode)
;;; haml-mode.el ends here

View File

@ -90,6 +90,9 @@ text nested beneath them.")
unless (looking-at opener) return t
return nil))
;; Setup/Activation
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.sass$" . sass-mode))
;; Setup/Activation
(provide 'sass-mode)
;;; sass-mode.el ends here