]> code.delx.au - gnu-emacs-elpa/blob - NEWS
*** empty log message ***
[gnu-emacs-elpa] / NEWS
1 Changes since 3.9.3:
2
3 * New add-log support (try C-x 4 a from within an SML function).
4
5 * Imenu support
6
7 * sml-bindings has disappeared.
8
9 * The code skeletons are now abbrevs as well.
10
11 * A new *sml* process is sent the content of sml-config-file (~/.sml-proc.sml)
12 if it exists.
13
14 * `sml-compile' works yet a bit differently. The command can begin
15 with `cd "path";' and it will be replaced by OS.FileSys.chDir.
16
17 * run-sml now pops up the new buffer. It can also run the command on another
18 machine. And it always prompts for the command name. Use a prefix
19 argument if you want to give args or to specify a host on which
20 to run the command.
21
22 * mouse-2 to yank in *sml* should work again (but won't work for next-error
23 any more).
24
25 * New major-modes sml-cm-mode, sml-lex-mode and sml-yacc-mode.
26
27 * sml-load-hook has disappeared as has inferior-sml-load-hook.
28
29 * sml-mode-startup.el is now automatically generated and you're supposed to
30 `load' it from .emacs or site-start.el.
31
32 * Minor bug fixes.
33
34 Changes since 3.3:
35
36 * the sml-drag-* commands have disappeared.
37
38 * added a little bit of `customize' support. Many of the customization
39 variables for indentation are still in flux, so they are not customize'd.
40
41 * proformas have been replaced by skeletons. it's mostly the same as
42 before (the layout has slightly changed, tho). The main difference
43 is that the indentation relies on the major-mode indentation so it
44 is implicitly customized, which makes more sense to me.
45 Also I added an electric space M-SPC that will call the corresponding
46 skeleton if any matches the immediately preceding symbol. Basically
47 that allows you to type `l e t M-SPC' to call the `let' skeleton.
48
49 * M-C-f and M-C-b try to be smart and jump around let..end and such blocks.
50 It's probably either too smart or not smart enough, tho.
51
52 * there is no more sml-<compiler>.el since the code should work for "all"
53 known compilers. If your favorite compiler doesn't seem to work right
54 send me a sample session.
55
56 * hilite support has disappeared and font-lock and menu support is now built-in.
57
58 * the indentation algorithm is inherently much slower. I've tried to ensure
59 the slowness never manifests itself in practice, but if you find a case
60 where the indentation doesn't feel instantaneous, tell me.
61
62 * function arguments get properly indented (yes, madam).
63
64 * the indentation has been majorly reworked. The list of changes is too long.
65 Many customizations have disappeared, some may reappear depending on the
66 feedback I get. The indentation should now "always" work right, so
67 tell me when it doesn't.
68
69 * nested comments are only properly handled if you have a nested-comments
70 aware Emacs (I don't know of any yet) or if you turn on font-lock.
71
72 * provide `sml-compile' which does something similat to `compile' except it
73 passes the command to an inferior-sml process. Also it has an additional
74 hack to look for sml-make-file-name in parent directories and cd to it
75 before sending the command (handy for CM.make() when the sources.cm file
76 is not in the current directory). This hack is very ad-hoc and quite
77 misleading for people who don't use CM. I.e. the default is not safe.
78
79 * sml-send-region and friends now always use a temp file. The temp file
80 management has been made a little more secure.
81
82 * the overlay is now turned off by default. Instead the region is activated,
83 so that transient-mark-mode will end up highlighting the error just like
84 the overlay used to do.
85
86 * sml-proc uses compile.el for error parsing. This mostly means that instead
87 of C-c ` you want to use the standard C-x `. It also means that error
88 formats for any compiler can be added more easily.
89
90 * The special frame handling has been thrown out because it doesn't interact
91 well with Emacs' own similar feature. I believe XEmacs still doesn't provide
92 such a feature, so if you miss it, either switch to Emacs or (convince
93 someone else to) add it to XEmacs.