]> code.delx.au - gnu-emacs-elpa/blob - ChangeLog
Merge from trunk
[gnu-emacs-elpa] / ChangeLog
1 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 Move non-SMIE indentation code to a separate file.
4 * sml-oldindent.el: Rename from sml-move.el.
5 * makefile.pkg (ELFILES): Adjust.
6 * sml-mode.el (sml-indent-line, sml-find-comment-indent)
7 (sml-calculate-indentation, sml-bolp, sml-first-starter-p)
8 (sml-indent-starter, sml-indent-relative, sml-indent-pipe)
9 (sml-find-forward, sml-indent-arg, sml-get-indent, sml-dangling-sym)
10 (sml-delegated-indent, sml-get-sym-indent, sml-indent-default)
11 (sml-current-indentation, sml-find-matching-starter):
12 Move to sml-oldindent.el.
13 (comment-quote-nested, compilation-error-regexp-alist): Declare.
14 * sml-defs.el (sml-begin-syms, sml-begin-syms-re)
15 (sml-sexp-head-symbols-re, sml-preproc-alist, sml-indent-rule)
16 (sml-starters-indent-after, sml-delegate, sml-symbol-indent)
17 (sml-open-paren, sml-close-paren, sml-agglomerate-re)
18 (sml-exptrail-syms): Move to sml-oldindent.el.
19
20 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21
22 Get rid of ancient compatibility and small utility file.
23 * sml-proc.el (inferior-sml-mode-map): Don't use defmap.
24 * sml-move.el (sml-internal-syntax-table): Don't use defsyntax.
25 * sml-mode.el (sml-syntax-prop-table): Don't use defsyntax.
26 (sml-electric-space): `last-command-char' -> `last-command-event'.
27 (sml-defuse-jump-to-def): Don't use goto-line from Elisp.
28 * sml-defs.el (sml-mode-map): Don't use defmap.
29 (sml-mode-syntax-table): Don't use defsyntax.
30 (sml-preproc-alist, sml-builtin-nested-comments-flag):
31 Move from sml-util.el.
32 * sml-compat.el, sml-utils.el: Remove.
33 * makefile.pkg (ELFILES): Update.
34
35 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
36
37 Add SMIE support.
38 * .bzrignore: New file.
39 * makefile.pkg (test): Use sml-mode-startup.
40
41 * sml-mode.el (sml-use-smie): New config var.
42 (sml-smie-grammar, sml-indent-separator-outdent): New vars.
43 (sml-smie-rules, sml-smie-definitional-equal-p)
44 (sml-smie-non-nested-of-p, sml-smie-datatype-|-p)
45 (sml-smie-forward-token-1, sml-smie-forward-token)
46 (sml-smie-backward-token-1, sml-smie-backward-token): New functions.
47 (sml-mode): Don't set forward-sexp-function.
48 (sml-mode-variables): Set it here instead, and setup SMIE instead
49 if applicable.
50
51 2010-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
52
53 * Release version 4.1.
54
55 * sml-mode.el: Don't setup load-path here any more.
56 * Makefile ($(PACKAGE)-startup.el): Recreate from scratch every time.
57 Setup load-path.
58 (dist): Try to update it to use Svn rather than CVS.
59
60 2007-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * sml-proc.el (inferior-sml-next-error-hook): Make it match one
63 more format.
64
65 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
66
67 * testcases.sml: Add (old) buggy case from Christopher Dutchyn.
68
69 * sml-proc.el (inferior-sml-font-lock-keywords): Don't add
70 error-regexps if compile.el already highlights them anyway.
71
72 * sml-mode.el (sml-font-lock-symbols-alist): Fix char for "not".
73
74 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
75
76 * sml-mode.el (sml-def-skeleton): If possible, only expand for
77 lower-case abbrevs and not inside strings or comments.
78 (sml-mlton-typecheck): Typo.
79
80 * sml-proc.el (sml-proc-comint-input-filter-function): New function.
81 (inferior-sml-mode): Use it.
82 (sml-update-cursor): Don't forget errors here any more.
83
84 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
85
86 * sml-util.el (defmap, defsyntax): Avoid defconst.
87 (flatten): Remove.
88
89 * sml-mode.el (sml-calculate-indentation): Avoid previous-line.
90 (sml-keywords-regexp): Avoid the need for `flatten'.
91 (sml-defuse-jump-to-def): Fix typo.
92
93 * sml-defs.el (sml-syms-re): Don't use `flatten'.
94 (sml-sexp-head-symbols-re, sml-starters-indent-after)
95 (sml-non-nested-of-starter-re): Avoid the need for `flatten'.
96
97 * sml-proc.el (inferior-sml-next-error-hook): New fun.
98 (inferior-sml-mode): Use it.
99
100 2007-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
101
102 * sml-mode.el (sml-mlton-error-regexp-alist): New var.
103 (sml-mlton-typecheck): Use it.
104 (compilation-error-regexp-alist): Add entries after loading "compile"
105 so that M-x compile works.
106
107 * sml-proc.el (inferior-sml-mode): Make TAB add a " rather than a space
108 at the end of a file name.
109
110 2007-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
111
112 * sml-mode.el (sml-mode-variables): Set comment-quote-nested instead of
113 comment-nested. Set comment-end-skip.
114 (sml-first-starter-p): New function.
115 (sml-indent-starter): Use it to fix an indentation bug.
116 (sml-mlton-command, sml-mlton-mainfile): New vars.
117 (sml-mlton-typecheck): New command.
118 (sml-defuse-file): New var.
119 (sml-defuse-def-regexp, sml-defuse-use-regexp-format): New consts.
120 (sml-defuse-file, sml-defuse-symdata-at-point): New functions.
121 (sml-defuse-set-file, sml-defuse-jump-to-def): New commands.
122
123 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
124
125 * sml-move.el (sml-find-match-forward): Avoid infinite looping if the
126 construct is not properly closed (yet).
127
128 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
129
130 * sml-defs.el (sml-mode-menu): Remove left over obsolete entries.
131
132 * sml-proc.el (inferior-sml-mode): Preserve the menu-bar of the
133 compilation minor mode, if any.
134
135 2004-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
136
137 * Release version 4.0.
138
139 2004-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * sml-mode.el (sml-font-lock-symbols-alist): Add yet more silly entries.
142
143 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * sml-mode.el (sml-font-lock-symbols-alist): Add entries for >= and <=.
146 (sml-font-lock-symbols-alist): Add entries for simple type variables.
147 (sml-font-lock-compose-symbol): Add support for non-punctuation syms.
148
149 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
150
151 * sml-move.el (sml-backward-sexp, sml-forward-sexp): Remove unused var.
152
153 * sml-mode.el (sml-calculate-indentation): Remove unused var.
154 (sml-get-indent): Change first arg's meaning.
155 (sml-get-sym-indent): Adjust call.
156 (sml-forms-menu): Simplify.
157 (sml-font-lock-symbols, sml-font-lock-symbols-alist): New vars.
158 (sml-font-lock-compose-symbol, sml-font-lock-symbols-keywords):
159 New funs.
160 (sml-font-lock-keywords): Use them.
161
162 * sml-compat.el (temp-directory): Get rid of warning.
163
164 * Makefile (install_startup): Don't add to load-path any more.
165
166 * sml-proc.el (sml-make-error): Use match-string.
167 (sml-error-regexp-alist): Merge regexps.
168 (sml-update-cursor): Check sml-temp-file is non-nil.
169
170 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
171
172 * sml-proc.el (sml-error-regexp-alist): Use new compile.el features
173 if available.
174 (sml-send-region): Remove unused var `file'.
175 (sml-drag-region): Remove unused function.
176 (sml-update-cursor): Use compilation-fake-loc if available.
177 (compilation-goto-locus): Only advise if necessary.
178
179 * sml-mode.el: Add self to load-path in sml-mode-startup.el.
180 (sml-def-skeleton): Try to use the new `system' abbrev flag.
181
182 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 * testcases.sml: Add a nasty case that is still wrong.
185
186 * sml-proc.el (sml-error-regexp-alist): Tune the regexp for sml/nj.
187
188 * sml-mode.el (sml-mode): Better handle paragraphs in comments.
189 (sml-mode-variables): Clean up paragraph settings.
190 (sml-electric-pipe): Fix a boundary bug.
191 (sml-indent-starter, sml-get-sym-indent, sml-find-matching-starter):
192 Fix indentation algorithm. Can't remember what it was about.
193 This code is nasty, I just can't understand what's doing what.
194 (completion-ignored-extensions): Add the new .cm directory.
195
196 2003-12-09 Stefan Monnier <monnier@iro.umontreal.ca>
197
198 * sml-defs.el (sml-mode-menu): Fix typo. Use std names.
199 (sml-begin-syms-re): Reduce redundancy.
200
201 2001-09-18 Stefan Monnier <monnier@cs.yale.edu>
202
203 * sml-mode.el (sml-tyvarseq-re): Fix typo.
204
205 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
206
207 * sml-mode.el (sml-rightalign-and): New defcustom.
208 (sml-tyvarseq-re): New var.
209 (sml-font-lock-keywords): Use it.
210 (sml-imenu-create-index): Don't get confused by tyvarseq's.
211 (sml-mode-variables): Don't set `comment-column'.
212 (sml-funname-of-and): New function.
213 (sml-electric-pipe): Use it.
214 (sml-find-comment-indent): Try to ignore comment-markers in strings.
215 (sml-calculate-indentation): Handle closing parens specially.
216 (sml-indent-pipe): Recognize the case where `and' defines a datatype.
217 (sml-dangling-sym): Make it work if the symbol is an open-paren.
218 (sml-indent-default): Change the behavior when preceded by `end',
219 although I'm not quite sure why.
220 Understand dangling open-parens.
221 Properly skip *all* subexpressions of lower precedence.
222 Allow use of sml-symbol-indent to outdent lines starting with , or ;.
223 (sml-insert-form): Use preceding-char to avoid bug at bobp.
224
225 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
226
227 * sml-proc.el (sml-proc-buffer): Save excursion when calling run-sml.
228
229 * sml-move.el (sml-syntax-prec): Split ; and , from `in' and `with'.
230
231 * sml-mode.texi: Put the entry in `Emacs' rather than `Editors'.
232
233 * sml-mode.spec (BuildArch): Simplify call to `install-info'.
234
235 * sml-defs.el (sml-mode-menu): Add an explicit t for always-active.
236 (sml-symbol-indent): Add entries for , and ; and turn into defcustom.
237
238 * sml-compat.el: Add more stuff. It might help for Emacs-19.34.
239
240 * makefile.pkg (test): Use elisp files in current dir.
241
242 2000-12-24 Stefan Monnier <monnier@cs.yale.edu>
243
244 * Release version 3.9.5.
245
246 * Makefile (install): Also install .el files.
247 (dist): Don't rely on $CVSROOT.
248
249 * sml-mode.el: Require `skeleton'.
250 (sml-mode): Add the menu for XEmacs. Make sure @ is a valid skeleton.
251 (sml-comment-indent): Remove.
252 (sml-mode-variables): Don't set comment-indent-function.
253 (sml-def-skeleton): Nop if skeletons aren't available.
254 (skeletons): Use `> _' and `@'.
255 (sml-forms-menu): Don't bother with easy-menu-filter-return crap.
256 (sml-cm-mode-syntax-table, sml-cm-font-lock-keywords): New vars.
257 (sml-cm-mode): Use define-derived-mode rather than define-generic-mode.
258 (sml-lex-font-lock-keywords, sml-lex-font-lock-defaults): New vars.
259 (sml-yacc-font-lock-keywords): Use sml-lex-font-lock-keywords.
260 Refine pattern to recognize the %prec keyword.
261 (sml-yacc-font-lock-defaults): Fix typo.
262
263 * sml-proc.el (inferior-sml-mode): Disable next-error for XEmacs.
264
265 * sml-util.el (defsyntax): Don't forget to eval `doc'.
266
267 * sml-mode.spec: Simplify.
268
269 * sml-defs.el (sml-mode-menu): Remove bogus entry for sml-mode-version.
270
271 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
272
273 * sml-mode.el: Make the toplevel closer to usual practice.
274 (sml-imenu-regexp, sml-imenu-create-index): New var and fun.
275 (sml-mode): Use them.
276 (sml-beginning-of-defun): Add `and' as function-leader.
277 (sml-lex-mode): New trivial mode.
278 (sml-yacc-bnf-face, sml-yacc-indent-action, sml-yacc-indent-pipe)
279 (sml-yacc-indent-term, sml-yacc-font-lock-keywords)
280 (sml-yacc-font-lock-defaults): New vars.
281 (sml-yacc-indent-line, sml-yacc-indentation, sml-yacc-mode): New funs.
282
283 * sml-mode.texi: Added yours truly to the list of authors.
284
285 * sml-mode.spec: New file.
286
287 * sml-defs.el (sml-outline-regexp): Slightly improved regexp.
288
289 2000-08-24 Stefan Monnier <monnier@cs.yale.edu>
290
291 * sml-proc.el (inferior-sml-mode-map): Don't inherit from sml-bindings.
292 Add the binding for C-c C-l explicitly instead.
293 (sml-run): Look in cwd (but only if the command has slashes).
294
295 * sml-mode.el (sml-mode-abbrev-table): Remove (created by
296 define-derived-mode).
297 (sml-mode): Setup add-log's current-defun-function.
298 (sml-indent-line): Never indent to a negative level.
299 (sml-skip-siblings, sml-beginning-of-defun, sml-max-name-components)
300 (sml-current-fun-name): New funs and vars for add-log support.
301 (sml-comment-indent): Simplify.
302 (sml-def-skeleton): Also create the skeleton as an abbrev.
303 (skeletons): New for "struct", "sig", "val", "fn" and "fun".
304 (sml-electric-space): Rewrite to use abbrev's machinery.
305
306 * sml-defs.el (sml-mode-map): Merge with sml-bindings.
307 (sml-bindings): Remove.
308
309 2000-02-22 Stefan Monnier <monnier@cs.yale.edu>
310
311 * sml-mode.el (sml-find-matching-starter): Use syms instead of a RE.
312 (sml-indent-default): Use symbol membership rather than a regexp.
313 Also, use `sym-indent' instead of (current-column).
314 This fixes a problem with a hanging `structure Foo = (struct|let)'
315 (due to `structure' having a sml-indent-rule, as opposed to `fun').
316 Hopefully it won't introduce other problems.
317 (sml-font-lock-keywords): Match vars `val x : int' also.
318 (sml-electric-pipe): Update to the new `sml-find-matching-starter' and
319 return a sensible default instead of raising an error in case of
320 unexpected situations.
321 (sml-indent-line): Ignore errors and keep the cursor where it is.
322 (sml-calculate-indentation, sml-indent-pipe): Use syms instead of REs.
323
324 * sml-defs.el (sml-starters-re, sml-pipehead-re): Remove.
325
326 * testcases.sml: New file.
327
328 * makefile.pkg (test): New target to run the test suite.
329
330 2000-02-18 Stefan Monnier <monnier@cs.yale.edu>
331
332 * *.el: Pass through checkdoc and use `eval-when-compile' whenever
333 possible for (require 'cl).
334
335 2000-02-18 Stefan Monnier <monnier@cs.yale.edu>
336
337 * sml-util.el (make-temp-dir, make-temp-file, temp-file-dir)
338 (delete-temp-dirs): Replace by the make-temp-file from Emacs-21.
339 (custom-create-map): Add :group arg and allow key to be a list.
340 (define-major-mode): Remove (use define-derived-mode instead).
341 (sml-builtin-nested-comments-flag): New var.
342 (concatq): Remove.
343
344 * sml-proc.el (sml-host-name): New var.
345 (sml-make-file-name): Replace by `sml-compile-commands'.
346 (sml-config-file): New var.
347 (sml-compile-commands-alist): New var.
348 (inferior-sml-load-hook): Remove.
349 (sml-buffer): Query if the current buffer is not a *sml*.
350 (inferior-sml-mode): Use minor-mode-overriding-map-alist to disable
351 compilation-minor-mode's keybindings.
352 (run-sml): Turn into an alias for sml-run.
353 (sml-run): Query the user for the command. If prefix is set (or if
354 default value is not null) query for args and host.
355 Use `split-string' rather than our own function.
356 Run cmd on another host if requested and pass it an init file.
357 Pop to the buffer at the end.
358 (sml-args-to-list): Remove.
359 (sml-compile): Look for special files (sml-compile-command-alist) in
360 the current dir (and its parents) to choose a default command.
361 Remember the command for next time in the same buffer.
362 Make the `cd' explicit in the command so the user can change it.
363 (sml-make-error): Fix for when `endline' is absent.
364
365 * sml-mode.el: Pass it through checkdoc.
366 (sml-mode-version): Remove.
367 (sml-load-hook): Remove.
368 (sml-mode-info): Use `info' rather than `Info-goto-node'.
369 (sml-keywords-regexp): Add "o".
370 (sml-syntax-prop-table): Use `defsyntax'.
371 (sml-font-lock-syntactic-keywords): Only use nested comments if supported.
372 (sml-mode): Use `define-derived-mode'.
373 (sml-electric-pipe): `sml-indent-line' -> `indent-according-to-mode'.
374 (sml-indent-line): Use `indent-line-to'.
375 (sml-cm-mode): New mode for CM files.
376
377 * Makefile: Update.
378
379 * sml-mode-startup.el: Remove since it's now auto-generated.
380
381 * sml-defs.el (sml-bindings): Remove left over C-c` binding.
382 (sml-mode-map): Add binding for sml-drag-region (was in sml-proc.el).
383 (sml-mode-syntax-table): Only use nested comments if supported.
384 (sml-mode-menu): Use next-error rather than the old sml-next-error.
385 (sml-pipehead-re): Remove "of".
386
387 * sml-compat.el (set-keymap-parents): Make sure it also works when
388 called with a single keymap rather than a list.
389 (temporary-file-directory): Add a default definition for XEmacs.
390 (make-temp-file): New function.
391
392 1999-08-11 Stefan Monnier <monnier@cs.yale.edu>
393
394 * Release version 3.9.3.
395
396 * sml-mode.texi: Somewhat update the doc.
397
398 1999-08-09 Stefan Monnier <monnier@cs.yale.edu>
399
400 * Makefile: Update to the version of pcl-cvs.
401
402 * sml-proc.el: Eliminate some old unused code.
403
404 * sml-defs.el,sml-mode.el,sml-proc.el: Add simple customize support.
405
406 1999-07-07 Stefan Monnier <monnier@cs.yale.edu>
407
408 * sml-proc.el (sml-update-cursor): Make sure it also works if
409 compile.el is fixed to uses a marker.
410
411 * sml-mode.el (sml-indent): Fix the `fixindent'.
412
413 1999-06-22 Stefan Monnier <monnier@cs.yale.edu>
414
415 * sml-mode-startup.el: Fix to fulfill autoload.el assumptions.
416
417 1999-06-21 Stefan Monnier <monnier@cs.yale.edu>
418
419 * sml-defs.el (sml-bindings): Remove bindings for TAB and M-C-\.
420
421 1999-06-19 Stefan Monnier <monnier@cs.yale.edu>
422
423 * sml-mode.el (sml-font-lock-keywords): Skip type vars in "fun 'a myfn"
424 (sml-calculate-indentation): Add a hack to allow the user to manually
425 override the indentation algorithm with a magic comment.
426
427 * sml-mode-startup.el: Update the autoloads automatically.
428
429 1999-06-19 Stefan Monnier <monnier@cs.yale.edu>
430
431 * Release version 3.9.2
432
433 * sml-proc.el (sml-error-regexp-alist): Fix the pathological
434 font-locking on long lines.
435
436 * sml-move.el (sml-forward-sexp): Slightly improved.
437
438 1999-06-17 Stefan Monnier <monnier@cs.yale.edu>
439
440 * sml-mode.el (sml-insert-form): Only add a space if needed.
441 (sml-electric-space): New command bound to M-SPC.
442
443 * sml-defs.el (sml-close-paren): Add a second field that specifies when
444 not to delegate. Only used for `else'.
445
446 1999-06-16 Stefan Monnier <monnier@cs.yale.edu>
447
448 * sml-move.el (sml-(for|back)ward-sym): Distinguish between
449 operator "=" and syntax for definitions "d=".
450
451 * sml-defs.el (sml-indent-starters, sml-delegate): Simplify.
452 (sml-symbol-indent): Add outdentation for `fn' and generalize it to
453 also work for `of' and `in' and `end'.
454
455 * sml-mode.el (sml-nested-if-indent): Reintroduce as well as the
456 special casing code for it.
457 (sml-indent-relative): Generalize treatment of `of', `in', `end', ...
458 (sml-electric-pipe): Remove the slow behavior and add smarts for the
459 never-used type-variable arguments for function definitions.
460
461 1999-06-15 Stefan Monnier <monnier@cs.yale.edu>
462
463 * sml-defs.el (sml-mode-menu), sml-mode.el (sml-forms-menu):
464 Make the menu dynamically.
465
466 * sml-mode.el (sml-form-<foo>): Use skeletons.
467 (sml-calculate-indentation): Add `with' indentation.
468
469 1999-06-14 Stefan Monnier <monnier@cs.yale.edu>
470
471 * sml-move.el (sml-(for|back)ward-sym): Now also return the string
472 if any and take care of the "op" special keyword.
473 (sml-op-prec): Setup an alist for the infix operators.
474
475 * version 3.9.1: sent to Roland McGrath.
476
477 1999-06-13 Stefan Monnier <monnier@cs.yale.edu>
478
479 * sml-smlnj.el, sml-mosml.el, sml-poly-ml.el: Remove.
480
481 * sml-proc.el (...): Get rid of sml-next-error by spicing up the
482 interface with compile.el so that intervals can be displayed.
483 `sml-overlay' is kept (and moved from sml-mode to sml-proc where it
484 belongs) but is made redundant in the case of transient-mark-mode.
485
486 1999-06-12 Stefan Monnier <monnier@cs.yale.edu>
487
488 * sml-proc.el (sml-prompt-regexp): More general regexp to catch mosml,
489 smlnj as well as polyml prompts.
490 (sml-update-cursor, sml-send-command, inferior-sml-mode):
491 Make it work with compile.el's `next-error'.
492 (sml-temp-threshold): Drop: always use a temp file.
493
494 1999-06-10 Stefan Monnier <monnier@cs.yale.edu>
495
496 * sml-move.el (sml-op-prec): Update the list of default infix ops
497 based on sml/nj's source files.
498
499 1999-06-08 Stefan Monnier <monnier@cs.yale.edu>
500
501 * sml-proc.el (sml-run): Remove dubious code to take care of a
502 supposedly special case in order not to send "" when args=nil.
503
504 1999-06-07 Stefan Monnier <monnier@cs.yale.edu>
505
506 * sml-mode.el (sml-font-lock-syntactic-keywords): Add syntactic
507 fontification for the ' \"' case (exhibited by lexgen.sml).
508
509 1999-06-07 Stefan Monnier <monnier@cs.yale.edu>
510
511 * ALL: The new indentation begins to work. v3_9_0
512
513 1999-05-29 Stefan Monnier <monnier@cs.yale.edu>
514
515 * sml-defs.el (sml-mode-syntax-table): Add ~ of prefix-syntax.
516
517 * sml-mode.el (sml-find-match-indent): (nilp sml-type-of-indent) is
518 only applied if the `let' is alone at the end of the line.
519 (sml-type-of-indent): Default changed to `nil'.
520
521 1999-05-28 Stefan Monnier <monnier@cs.yale.edu>
522
523 * sml-mode.el (sml-font-lock-keywords): Change _ and ' back to word
524 syntax for font-locking.
525
526 1999-05-27 Stefan Monnier <monnier@cs.yale.edu>
527
528 * sml-mode.el (sml-font-lock-syntactic-keywords): Finally got the
529 matching of let...end working.
530 (sml-electric-pipe): Take a fun sexp (symbol) rather than a fun word.
531
532 1998-10-26 Stefan Monnier <monnier@cs.yale.edu>
533
534 * sml-mode.el (sml-font-lock-syntactic-keywords):
535 Add syntactic-keywords to support nested comments.
536