Re: ocaml-mode 1.06

Fritz Heinrichmeyer (fritz.heinrichmeyer@fernuni-hagen.de)
26 Nov 1997 14:10:30 +0100

Subject: Re: ocaml-mode 1.06
From: Fritz Heinrichmeyer <fritz.heinrichmeyer@fernuni-hagen.de>
Date: 26 Nov 1997 14:10:30 +0100
In-Reply-To: Jacques GARRIGUE's message of Wed, 26 Nov 1997 17:17:34 +0900

when compiling and using next-error, the error expression is not
correctly marked. Here is the patch from
John Gerard Malecki <johnm@artisan.com> (against ocaml-mode 1.05, but it
can be applied trivially by hand):

635,637c635,636
< (setq end (- (+ (point) end 1) beg) ;; (+ (point) end)
< beg (+ (point) 1) ;; (+ (point) beg)
< )

---
>             (setq beg (+ (point) beg)
>                   end (+ (point) end))