emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: CVS problems


From: Kenichi Handa
Subject: Re: CVS problems
Date: Wed, 3 Dec 2003 20:59:36 +0900 (JST)
User-agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/21.3 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI)

In article <address@hidden>, Werner LEMBERG <address@hidden> writes:
> Since two days I can't update the emacs CVS (and all other CVS
> repositories from subversions.  I always get the message

>   cvs [update aborted]: end of file from server 
>                         (consult above messages if any)

> Is this a known problem?

I don't have that problem.  Actually I commited some changes
today.  Anyway, the patch for segfault is just as attached.
Could you apply it to your local file and test it?

---
Ken'ichi HANDA
address@hidden


Index: composite.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/composite.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -c -r1.29 -r1.30
cvs server: conflicting specifications of output style
*** composite.c 1 Sep 2003 15:45:52 -0000       1.29
--- composite.c 1 Dec 2003 12:33:13 -0000       1.30
***************
*** 843,849 ****
      args[0] = QCtest;
      args[1] = Qequal;
      args[2] = QCweakness;
!     args[3] = Qt;
      args[4] = QCsize;
      args[5] = make_number (311);
      composition_hash_table = Fmake_hash_table (6, args);
--- 843,851 ----
      args[0] = QCtest;
      args[1] = Qequal;
      args[2] = QCweakness;
!     /* Fixme: It seems that a weak hash table leads to segfault in GC,
!        but I have not yet found why.  -- address@hidden */
!     args[3] = Qnil;
      args[4] = QCsize;
      args[5] = make_number (311);
      composition_hash_table = Fmake_hash_table (6, args);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]