Skip to content

Commit 10437ab

Browse files
committed
Merge pull request #2 from ibrahima/melpa
Add comments and formatting for MELPA
2 parents 26453c1 + cd5b752 commit 10437ab

File tree

1 file changed

+34
-6
lines changed

1 file changed

+34
-6
lines changed

smali-mode.el

+34-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,39 @@
1-
;; Schema for smali coloring for emacs
1+
;;; smali-mode.el --- Major mode for editing Smali/Baksmali files
22
;;
3-
;; Maintained by Tim Strazzere <[email protected]> <[email protected]>
3+
;; Filename: smali-mode.el
4+
;; Description:
5+
;; Author: Tim Strazzere <[email protected]> <[email protected]>
6+
;; Maintainer:
7+
;; Copyright (C) 2015, Tim Strazzere, all rights reserved.
8+
;; Created:
9+
;; Version:
10+
;; Last-Updated:
11+
;; By:
12+
;; Update #: 0
13+
;; URL:
14+
;; Keywords: languages smali
15+
;; Compatibility:
416
;;
5-
;; Originally take from the vim template by Jon Larimer <[email protected]>
6-
;; However, as of 09.20.2013 I don't think any of the original bits are even
7-
;; in here.
8-
;;
17+
;; Features that might be required by this library:
18+
;;
19+
;; None
20+
;;
21+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22+
;;
23+
;;; Commentary:
24+
;;
25+
;;
26+
;;
27+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28+
;;
29+
;;; Change log:
30+
;;
31+
;;
32+
;;; Code:
933

1034
(require 'generic)
1135

36+
;;;###autoload
1237
(define-generic-mode
1338
'smali-mode
1439
;; comments
@@ -187,4 +212,7 @@
187212
"A mode for smali files"
188213
)
189214

215+
(add-to-list 'auto-mode-alist '(".smali$" . smali-mode))
216+
190217
(provide 'smali-mode)
218+
;;; smali-mode.el ends here

0 commit comments

Comments
 (0)