SCM Repository
Log of /sml/trunk/sml-mode/sml-mode.el
Sticky Revision: |
Revision 892 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jul 20 13:47:33 2001 UTC (19 years, 9 months ago) by monnier
File length: 33952 byte(s)
Diff to previous 768
(sml-rightalign-and): New defcustom. (sml-tyvarseq-re): New var. (sml-font-lock-keywords): Use it. (sml-imenu-create-index): Don't get confused by tyvarseq's. (sml-mode-variables): Don't set `comment-column'. (sml-funname-of-and): New function. (sml-electric-pipe): Use it. (sml-find-comment-indent): Try to ignore comment-markers in strings. (sml-calculate-indentation): Handle closing parens specially. (sml-indent-pipe): Recognize the case where `and' defines a datatype. (sml-dangling-sym): Make it work if the symbol is an open-paren. (sml-indent-default): Change the behavior when preceded by `end', although I'm not quite sure why. Understand dangling open-parens. Properly skip *all* subexpressions of lower precedence. Allow use of sml-symbol-indent to outdent lines starting with , or ;. (sml-insert-form): Use preceding-char to avoid bug at bobp.
Revision 768 - (view) (download) (annotate) - [select for diffs]
Modified Sun Dec 24 19:59:53 2000 UTC (20 years, 3 months ago) by monnier
File length: 31213 byte(s)
Diff to previous 709
Require `skeleton'. (sml-mode): Add the menu for XEmacs. Make sure @ is a valid skeleton. (sml-comment-indent): Remove. (sml-mode-variables): Don't set comment-indent-function. (sml-def-skeleton): Nop if skeletons aren't available. (skeletons): Use `> _' and `@'. (sml-forms-menu): Don't bother with easy-menu-filter-return crap. (sml-cm-mode-syntax-table, sml-cm-font-lock-keywords): New vars. (sml-cm-mode): Use define-derived-mode rather than define-generic-mode. (sml-lex-font-lock-keywords, sml-lex-font-lock-defaults): New vars. (sml-yacc-font-lock-keywords): Use sml-lex-font-lock-keywords. Refine pattern to recognize the %prec keyword. (sml-yacc-font-lock-defaults): Fix typo.
Revision 709 - (view) (download) (annotate) - [select for diffs]
Modified Sat Oct 7 03:35:08 2000 UTC (20 years, 6 months ago) by monnier
File length: 31091 byte(s)
Diff to previous 707
Typo
Revision 707 - (view) (download) (annotate) - [select for diffs]
Modified Sat Oct 7 03:21:59 2000 UTC (20 years, 6 months ago) by monnier
File length: 31120 byte(s)
Diff to previous 700
Make the toplevel closer to usual practice. (sml-imenu-regexp, sml-imenu-create-index): New var and fun. (sml-mode): Use them. (sml-beginning-of-defun): Add `and' as function-leader. (sml-lex-mode): New trivial mode. (sml-yacc-bnf-face, sml-yacc-indent-action, sml-yacc-indent-pipe) (sml-yacc-indent-term, sml-yacc-font-lock-keywords) (sml-yacc-font-lock-defaults): New vars. (sml-yacc-indent-line, sml-yacc-indentation, sml-yacc-mode): New funs.
Revision 700 - (view) (download) (annotate) - [select for diffs]
Modified Thu Aug 24 20:35:39 2000 UTC (20 years, 7 months ago) by monnier
File length: 28131 byte(s)
Diff to previous 544
* sml-proc.el (inferior-sml-mode-map): Don't inherit from sml-bindings. Add the binding for C-c C-l explicitly instead. (sml-run): Look in cwd (but only if the command has slashes). * sml-mode.el (sml-mode-abbrev-table): Remove (created by define-derived-mode). (sml-mode): Setup add-log's current-defun-function. (sml-indent-line): Never indent to a negative level. (sml-skip-siblings, sml-beginning-of-defun, sml-max-name-components) (sml-current-fun-name): New funs and vars for add-log support. (sml-comment-indent): Simplify. (sml-def-skeleton): Also create the skeleton as an abbrev. (skeletons): New for "struct", "sig", "val", "fn" and "fun". (sml-electric-space): Rewrite to use abbrev's machinery. * sml-defs.el (sml-mode-map): merge with sml-bindings. (sml-bindings): Remove.
Revision 544 - (view) (download) (annotate) - [select for diffs]
Modified Tue Feb 22 22:56:38 2000 UTC (21 years, 1 month ago) by monnier
File length: 26486 byte(s)
Diff to previous 542
* sml-mode.el (sml-find-matching-starter): Use a list of syms instead of a regexp. (sml-indent-default): Use symbol membership rather than a regexp. Also, use `sym-indent' instead of (current-column). This fixes a problem with a hanging `structure Foo = (struct|let)' (due to `structure' having a sml-indent-rule, as opposed to `fun'). Hopefully it won't introduce other problems. (sml-font-lock-keywords): Match vars `val x : int' also. (sml-electric-pipe): Update to the new `sml-find-matching-starter' and return a sensible default instead of raising an error in case of unexpected situations. (sml-indent-line): Ignore errors and keep the cursor where it is. (sml-calculate-indentation, sml-indent-pipe): Use syms instead of regexps. * sml-defs.el (sml-starters-re, sml-pipehead-re): Remove. * testcases.sml: New file. * makefile.pkg (test): new target to run the test suite.
Revision 542 - (view) (download) (annotate) - [select for diffs]
Modified Fri Feb 18 22:59:40 2000 UTC (21 years, 2 months ago) by monnier
File length: 26221 byte(s)
Diff to previous 541
*** empty log message ***
Revision 541 - (view) (download) (annotate) - [select for diffs]
Modified Fri Feb 18 20:35:43 2000 UTC (21 years, 2 months ago) by monnier
File length: 26261 byte(s)
Diff to previous 535
Pass through checkdoc and use `eval-when-compile' whenever possible for (require 'cl).
Revision 535 - (view) (download) (annotate) - [select for diffs]
Modified Fri Feb 18 16:49:10 2000 UTC (21 years, 2 months ago) by monnier
File length: 26182 byte(s)
Diff to previous 395
* sml-util.el (make-temp-dir, make-temp-file, temp-file-dir, delete-temp-dirs): Replaced by the make-temp-file from Emacs-21. (custom-create-map): add :group arg and allow key to be a list. (define-major-mode): Removed (use define-derived-mode instead). (sml-builtin-nested-comments-flag): New var. * sml-proc.el (sml-host-name): New var. (sml-make-file-name): Replaced by `sml-compile-commands'. (sml-config-file): New var. (sml-compile-commands-alist): New var. (inferior-sml-load-hook): Removed. (sml-buffer): Query if the current buffer is not a *sml*. (inferior-sml-mode): Use minor-mode-overriding-map-alist to disable compilation-minor-mode's keybindings. (run-sml): Turn into an alias for sml-run. (sml-run): Query the user for the command. If prefix is set (or if default value is not null) query for args and host. Use `split-string' rather than our own function. Run cmd on another host if requested and pass it an init file if it exists. Pop to the buffer at the end. (sml-args-to-list): Remove. (sml-compile): Look for special files (sml-compile-command-alist) in the current dir (and its parents) to choose a default command. Remember the command for next time in the same buffer. Make the `cd' explicit in the command so the user can change it. (sml-make-error): Fix for when `endline' is absent. * sml-mode.el: Pass it rhough checkdoc. (sml-mode-version): Remove. (sml-load-hook): Remove. (sml-mode-info): Use `info' rather than `Info-goto-node'. (sml-keywords-regexp): Add "o". (sml-syntax-prop-table): Use `defsyntax'. (sml-font-lock-syntactic-keywords): Only use nested comments if supported. (sml-mode): Use `define-derived-mode'. (sml-electric-pipe): `sml-indent-line' -> `indent-according-to-mode'. (sml-indent-line): Use `indent-line-to'. (sml-cm-mode): New mode for CM files. * Makefile: Update. * sml-mode-startup.el: Remove since it's now autogenerated. * sml-defs.el (sml-bindings): Remove left over C-c` binding. (sml-mode-map): Add binding for sml-drag-region (was in sml-proc.el). (sml-mode-syntax-table): Only use nested comments if supported. (sml-mode-menu): Use next-error rather than the old sml-next-error. (sml-pipehead-re): Remove "of". * sml-compat.el (set-keymap-=parents): Make sure it also works when called with a single keymap rather than a list. (temporary-file-directory): Add a default definition for XEmacs. (make-temp-file): New function.
Revision 395 - (view) (download) (annotate) - [select for diffs]
Modified Wed Aug 11 20:48:17 1999 UTC (21 years, 8 months ago) by monnier
File length: 27371 byte(s)
Diff to previous 394
* sml-mode.texi: somewhat updated the doc. * release 3.9.3
Revision 394 - (view) (download) (annotate) - [select for diffs]
Modified Mon Aug 9 21:45:51 1999 UTC (21 years, 8 months ago) by monnier
File length: 27411 byte(s)
Diff to previous 378
* Makefile: updated to the version of pcl-cvs. * sml-proc.el: eliminated some old unused code. * sml-defs.el,sml-mode.el,sml-proc.el: added simple customize support.
Revision 378 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 7 14:45:42 1999 UTC (21 years, 9 months ago) by monnier
File length: 27052 byte(s)
Diff to previous 347
* sml-proc.el (sml-update-cursor): make sure it also works if compile.el is fixed to uses a marker. * sml-mode.el (sml-indent): fix the `fixindent'.
Revision 347 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 21 15:08:30 1999 UTC (21 years, 10 months ago) by monnier
File length: 26861 byte(s)
Diff to previous 343
* sml-defs.el (sml-bindings): removed bindings for TAB and M-C-\ * sml-mode.el (sml-font-lock-keywords): skip type vars in "fun 'a myfn" (sml-calculate-indentation): add a hack to allow the user to manually override the indentation algorithm with a magic comment. * sml-mode-startup.el: update the autoloads automatically.
Revision 343 - (view) (download) (annotate) - [select for diffs]
Modified Sat Jun 19 09:29:33 1999 UTC (21 years, 10 months ago) by monnier
File length: 27353 byte(s)
Diff to previous 341
* sml-proc.el (sml-error-regexp-alist): solved the pathological font-locking on long lines. * sml-move.el (sml-forward-sexp): slightly improved.
Revision 341 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jun 18 19:10:12 1999 UTC (21 years, 10 months ago) by monnier
File length: 27353 byte(s)
Diff to previous 339
* sml-mode.el (sml-insert-form): Only add a space if needed. (sml-electric-space): new command bound to M-SPC.
Revision 339 - (view) (download) (annotate) - [select for diffs]
Modified Thu Jun 17 16:14:01 1999 UTC (21 years, 10 months ago) by monnier
File length: 27625 byte(s)
Diff to previous 334
* sml-defs.el (sml-close-paren): added a second field that specifies when not to delegate. Used for zero-indent single-line `if..else'.
Revision 334 - (view) (download) (annotate) - [select for diffs]
Modified Thu Jun 17 02:43:15 1999 UTC (21 years, 10 months ago) by monnier
File length: 28037 byte(s)
Diff to previous 333
* sml-move.el (sml-(for|back)ward-sym): distinguishes between operator "=" and syntax for definitions "d=". * sml-defs.el (sml-indent-starters, sml-delegate): simplified. (sml-symbol-indent): added outdentation for `fn' and generalized it to also work for `of' and `in' and `end'. * sml-mode.el (sml-nested-if-indent): reintroduced as well as the special casing code for it. (sml-indent-relative): generalize the treatment of `of', `in', `end', ... (sml-electric-pipe): removed the slow behavior and added smarts for the never-used type-variable arguments for function definitions. * sml-defs.el (sml-mode-menu), sml-mode.el (sml-forms-menu): make the menu dynamically. * sml-mode.el (sml-form-<foo>): use skeletons. (sml-calculate-indentation): added `with' indentation.
Revision 333 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jun 15 03:41:26 1999 UTC (21 years, 10 months ago) by monnier
File length: 31321 byte(s)
Diff to previous 332
* sml-move.el (sml-(for|back)ward-sym): now also return the string if any and take care of the "op" special keyword. (sml-op-prec): setup an alist for the infix operators. * version 3.9.1: sent to Roland McGrath.
Revision 332 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jun 15 00:51:38 1999 UTC (21 years, 10 months ago) by monnier
File length: 31341 byte(s)
Diff to previous 319
*** empty log message ***
Revision 319 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 7 22:47:00 1999 UTC (21 years, 10 months ago) by monnier
File length: 43586 byte(s)
Diff to previous 300
First seemingly acceptable new code.
Revision 300 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 27 22:01:36 1999 UTC (21 years, 10 months ago) by monnier
File length: 49326 byte(s)
Diff to previous 39
*** empty log message ***
Revision 39 - (view) (download) (annotate) - [select for diffs]
Modified Sat Mar 14 04:41:37 1998 UTC (23 years, 1 month ago) by monnier
File length: 50755 byte(s)
Diff to previous 38
*** empty log message ***
Revision 38 - (view) (download) (annotate) - [select for diffs]
Modified Fri Mar 13 20:31:45 1998 UTC (23 years, 1 month ago) by monnier
File length: 48075 byte(s)
Diff to previous 37
*** empty log message ***
Revision 37 - (view) (download) (annotate) - [select for diffs]
Modified Fri Mar 13 20:07:49 1998 UTC (23 years, 1 month ago) by monnier
File length: 48049 byte(s)
Diff to previous 33
*** empty log message ***
Revision 33 - (view) (download) (annotate) - [select for diffs]
Modified Thu Mar 12 16:57:15 1998 UTC (23 years, 1 month ago) by monnier
File length: 47966 byte(s)
Diff to previous 32
*** empty log message ***
Revision 32 - (view) (download) (annotate) - [select for diffs]
Added Thu Mar 12 16:54:39 1998 UTC (23 years, 1 month ago) by monnier
File length: 43381 byte(s)
Initial revision
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |