Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!cs.utexas.edu!uunet!apctrc!cra2!zjat02 From: zjat02@cra2.uucp (Jon A. Tankersley) Newsgroups: gnu.emacs Subject: Re: GNU Emacs 18.54 Message-ID: <854@apctrc.UUCP> Date: 10 May 89 22:31:55 GMT References: <8904270328.AA01399@sugar-bombs.ai.mit.edu> Sender: news@apctrc.UUCP Reply-To: zjat02@cra2.UUCP (Jon A. Tankersley) Distribution: gnu Organization: Amoco Production Company, Tulsa Research Center Lines: 34 In article <8904270328.AA01399@sugar-bombs.ai.mit.edu> rms@WHEATIES.AI.MIT.EDU writes: >GNU Emacs 18.54 is now available for anonymous ftp on prep.ai.mit.edu >in /u/emacs/edist.tar-18.54.Z. Compressed diffs from version 18.53 in >/u/emacs/diff-18.53-18.54 are 70k. > >This version does nothing but fix bugs. May have included one though. When I installed the patches I found the cm.c patch to be a problem. A bigger problem that patch thought. Here is the .rej file *************** *** 201,205 **** */ ! ntabs = deltax / Wcm.cm_tabwidth; n2tabs = ntabs + 1; tabx = (srcx / Wcm.cm_tabwidth + ntabs) * Wcm.cm_tabwidth; --- 201,205 ---- */ ! ntabs = (deltax + srcx % Wcm.cm_tabwidth) / Wcm.cm_tabwidth; n2tabs = ntabs + 1; tabx = (srcx / Wcm.cm_tabwidth + ntabs) * Wcm.cm_tabwidth; Trying to find the problem by hand turned up a problem. No ntabs, n2tabs or tabx = (.....)...; at all in my code anywhere. Could someone send me a correct (and patched) cm.c? -tank- #include /* nobody knows the trouble I .... */ tank@apctrc.trc.amoco.com ..!uunet!apctrc!tank