]> code.delx.au - gnu-emacs-elpa/commitdiff
* sml-proc.el (sml-error-regexp-alist): solved the pathological
authormonnier <>
Sat, 19 Jun 1999 08:29:33 +0000 (08:29 +0000)
committermonnier <>
Sat, 19 Jun 1999 08:29:33 +0000 (08:29 +0000)
  font-locking on long lines.

* sml-move.el (sml-forward-sexp): slightly improved.

ChangeLog
sml-mode.el
sml-move.el

index d2301cf3fc9cbc2642740ca56d021d0c58612450..8feac9dde9ee3b1e785ccb0cb93bb3fae94c6bed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1999-06-19  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * release: 3.9.2
+
+       * sml-proc.el (sml-error-regexp-alist): solved the pathological
+         font-locking on long lines.
+
+       * sml-move.el (sml-forward-sexp): slightly improved.
+
 1999-06-17  Stefan Monnier  <monnier@cs.yale.edu>
 
        * sml-mode.el (sml-insert-form): Only add a space if needed.
index 8216e244129ce22893cd6e0fe486c938d9eb4014..3728b686f706a0029ea0d398a6a7dd8570bea17c 100644 (file)
 
 ;;; VERSION STRING
 
-(defconst sml-mode-version-string "sml-mode, version 3.9.1")
+(defconst sml-mode-version-string "sml-mode, version 3.9.2")
 
 (require 'cl)
 (require 'sml-util)
index 70eed8958a6c67388fa2375b916d1c5fa2ee0642..9562f0fcbd41ff9156371a9c4ed22c06347fdb3f 100644 (file)
@@ -250,7 +250,8 @@ Returns T if the move indeed moved through one sexp and NIL if not."
     (sml-forward-spaces)
     (let* ((point (point))
           (op (sml-forward-sym))
-          (op-prec (sml-op-prec op 'forw)))
+          (op-prec (sml-op-prec op 'forw))
+          match)
       (cond
        ((not op)
        (let ((point (point)))