erlware / erlware-mode forked from jdavisp3/erlware-emacs-mode

Emacs mode for Erlang.

This URL has Read+Write access

erlware-mode / ChangeLog
100644 274 lines (138 sloc) 7.053 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
2009-09-14 Magnus Henoch <magnus@erlang-consulting.com>
 
* erlang.el (erlang-dollar-is-escape): New variable.
        (erlang-toggle-dollar-is-escape): New function.
        (erlang-syntax-table-init): Check erlang-dollar-is-escape.
 
2009-07-28 Magnus Henoch <magnus.henoch@gmail.com>
 
* erlang-start.el: Associate files using interpreter "escript" with Erlang mode.
 
2009-07-16 mats cronqvist <mats.cronqvist@gmail.com>
 
* better include file detection (again)
 
2009-07-15 mats cronqvist <mats.cronqvist@gmail.com>
 
* removed flawed next-error code.
 
2009-06-15 mats cronqvist <mats.cronqvist@gmail.com>
 
* this should have been part of the previous commit.
 
2009-06-15 mats cronqvist <mats.cronqvist@gmail.com>
 
* make flymake use $HOME/.erlang-flymake as temp dir. Ought to work on windows, and (more importantly) if the erl file is write protected.
 
2009-06-02 mats cronqvist <mats.cronqvist@gmail.com>
 
* fixed the backtick problems by removing emacs 19 compatibility flymake enhancements
 
2009-07-02 Magnus Henoch <magnus@erlang-consulting.com>
 
* erlang.el (erlang-calculate-stack-indent): Combine ignored 'if' statement for 'after' with the one for 'catch', to fix indentation of try-after.
 
2009-06-27 Dave Peticolas <dave@krondo.com>
 
* Ignore module name mismatch, as flymake renames the file.
 
2009-06-11 Magnus Henoch <magnus@erlang-consulting.com>
 
* erlang.el (erlang-get-function-name-and-arity): Fix arity: only count "sexp" as parameter when followed by "," or ")".
 
2009-06-08 Magnus Henoch <magnus@erlang-consulting.com>
 
* erlang.el (erlang-get-function-name-and-arity): New function. (erlang-mode-variables): Use it to include function arity in imenu entries.
 
2009-05-22 Magnus Henoch <magnus@erlang-consulting.com>
 
* (erlang-mode-variables): Set comment-add to 0 if using new-style comments, for proper operation of M-; on regions.
 
2009-05-18 Magnus Henoch <magnus@erlang-consulting.com>
 
* (erlang-mode-map): Define keymap when module is loaded.
 
* (erlang-mode): Don't call erlang-keymap-init.
 
* (erlang-keymap-init, erlang-mode-commands): Remove.
 
2009-05-08 Magnus Henoch <magnus@erlang-consulting.com>
 
* (inferior-erlang): Prompt for command when called with prefix argument.
 
2009-05-14 mats cronqvist <mats.cronqvist@gmail.com>
 
* flymake support
 
2009-05-04 Dave Peticolas <dave@krondo.com>
 
* Jim Morris's patch to make erlang.el byte-compile in 22.1 and 22.2.
 
2009-05-04 Dave Peticolas <dave@krondo.com>
 
* Support tags in Emacs > 19. (ported from original mode by Jim Morris).
 
2009-03-20 mats cronqvist <mats.cronqvist@gmail.com>
 
* numerous syntax highlighting fixes
 
2009-02-19 Derek Upham <sand@blarg.net>
 
* run after-change-major-mode-hook in Emacs 23 and greater
 
2009-02-18 mats cronqvist <mats.cronqvist@gmail.com>
 
* himBHliteral fix
 
2009-02-16 mats cronqvist <mats.cronqvist@gmail.com>
 
* fixed syntax hilite
 
2008-12-11 Dave Peticolas <dave@krondo.com>
 
* Fix bif/guard highlighting (Issue 25).
 
2008-10-31 Dave Peticolas <dave@krondo.com>
 
* Remove cruft. Fix issue 24 (catch clause indentation).
 
2008-10-31 Dave Peticolas <dave@krondo.com>
 
* Update tests.
 
2008-05-17 Dave Peticolas <dave@krondo.com>
 
* Remove the arrow font lock function.
 
2008-05-16 Dave Peticolas <dave@krondo.com>
 
* Erlang test file for erlware mode.
 
2008-05-15 Dave Peticolas <dave@krondo.com>
 
* Remove dead code.
 
2008-05-15 Dave Peticolas <dave@krondo.com>
 
* Treat $ as a character quote, not an expression prefix.
 
2008-05-04 Dave Peticolas <dave@krondo.com>
 
* Automatic newline for electric comma at the end of erlang clauses.
 
2008-04-28 Dave Peticolas <dave@krondo.com>
 
* New comment indenting behavior.
 
2008-04-20 Dave Peticolas <dave@krondo.com>
 
* Use supervisor:start_link/0. Update docs.
 
2008-04-12 Dave Peticolas <dave@krondo.com>
 
* Consistent spacing in export lines.
 
2008-04-04 Dave Peticolas <dave@krondo.com>
 
* Remove unused files. The app-wizard is superseded by sinan.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Use newline-and-indent.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Turn on electric newline by default.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Apply separator config to section headers.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Consistently use 3 percent signs for section headers.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Consistent newline after section headers.
 
2008-02-03 Dave Peticolas <dave@krondo.com>
 
* Configurable horizontal separators for function docs.
 
2008-01-09 Dave Peticolas <dave@krondo.com>
 
* Add erlware.org to README.
 
2008-01-05 Dave Peticolas <dave@krondo.com>
 
* Update README with erlare-man-root-dir change.
 
2008-01-05 Dave Peticolas <dave@krondo.com>
 
* Rename erlang-root-dir to erlang-man-root-dir.
 
2008-01-03 Dave Peticolas <dave@krondo.com>
 
* Add sinan clean function.
 
2008-01-01 Dave Peticolas <dave@krondo.com>
 
* Start of sinan command support.
 
2007-12-29 Dave Peticolas <dave@krondo.com>
 
* Obey user's delete-key-deletes-forward setting.
 
2007-12-27 Dave Peticolas <dave@krondo.com>
 
* Update supervisor init method.
 
2007-12-27 Dave Peticolas <dave@krondo.com>
 
* Distinguish between original mode and erlware mode.
 
2007-12-27 Dave Peticolas <dave@krondo.com>
 
* Whitespace cleanup.
 
2007-12-26 Martin Logan <dave@krondo.com>
 
* updated the init method
 
2007-12-27 Dave Peticolas <dave@krondo.com>
 
* Update supervisor init method.
 
2007-12-27 Dave Peticolas <dave@krondo.com>
 
* Whitespace cleanup.
 
2007-12-26 Martin Logan <dave@krondo.com>
 
* updated the init method
 
2007-12-25 Dave Peticolas <dave.peticolas@gmail.com>
 
* Reformat @doc sections to be consistent.
 
2007-12-25 Dave Peticolas <dave.peticolas@gmail.com>
 
* Add ChangeLog to comply with EPL.
 
2007-12-25 Dave Peticolas <dave.peticolas@gmail.com>
 
* Remove '.' characters from ends of @spec lines.
 
2007-12-25 Dave Peticolas <dave.peticolas@gmail.com>
 
* Add @private lines to generic callback function docs.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Formatting cleanup.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Move header @copyright edoc lines above @doc lines.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Cleanup whitespace.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Add XEmacs instructions for windows section.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Cleanup whitespace in emacs code.
 
2007-12-24 Dave Peticolas <dave.peticolas@gmail.com>
 
* Add instructions for XEmacs.
 
2007-12-23 Dave Peticolas <dave.peticolas@gmail.com>
 
* Clean up whitespace in emacs code.
 
2007-12-16 Dave Peticolas <dave.peticolas@gmail.com>
 
* Clean up whitespace in emacs code.
 
2007-12-15 Dave Peticolas <cyberlync@cyberlync-laptop.(none)>
 
* Remove trailing whitespace from skeleton code.
 
2007-12-14 Martin Logan <martinjlogan@Macintosh.local>
 
* @doc now sits below @spec
 
2007-11-02 Eric Merritt <cyberlync@gmail.com>
 
* skeleton changes