From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from weis@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id OAA18548 for caml-redistribution; Wed, 26 Nov 1997 14:35:08 +0100 (MET) Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id OAA18196 for ; Wed, 26 Nov 1997 14:10:27 +0100 (MET) Received: from jfh00.fernuni-hagen.de (jfh00.fernuni-hagen.de [132.176.7.6]) by concorde.inria.fr (8.8.7/8.8.5) with SMTP id OAA19538 for ; Wed, 26 Nov 1997 14:10:26 +0100 (MET) Received: (qmail 26738 invoked by uid 200); 26 Nov 1997 13:10:31 -0000 Cc: caml-list@pauillac.inria.fr Subject: Re: ocaml-mode 1.06 References: <19971126171734E.garrigue@kurims.kyoto-u.ac.jp> From: Fritz Heinrichmeyer Date: 26 Nov 1997 14:10:30 +0100 In-Reply-To: Jacques GARRIGUE's message of Wed, 26 Nov 1997 17:17:34 +0900 Message-ID: X-Mailer: Gnus v5.5/Emacs 20.2 X-Emacs: Emacs 20.2 (with raw setting) MIME-Version: 1.0 (generated by SEMI MIME-Edit 0.98 - =?ISO-8859-4?Q?"D?= =?ISO-8859-4?Q?=84=F2h=84=F2ji"?=) Content-Type: text/plain; charset=US-ASCII Sender: weis when compiling and using next-error, the error expression is not correctly marked. Here is the patch from John Gerard Malecki (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))