bug-gnu-emacs
[Top][All Lists]
Advanced

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

Re: emacs crash


From: Kenichi Handa
Subject: Re: emacs crash
Date: Mon, 3 Dec 2001 12:44:09 +0900 (JST)

ET <eli@beach.weizmann.ac.il> writes:
[...]
> (gdb) p coding->symbol
> $1 = 405338604
> (gdb) pr
> iso-2022-7bit-lock-unix
[...]

Thank you.  I found what is wrong.  In the macro
DECODE_COMPOSITION_END of coding.c, we are checking if we should
produce composition data by:
        coding->composing == COMPOSITION_DISABLED
But, that is not sufficient.  We may have encountered `composition
end' sequence in an invalid cotext (i.e. without preceding
`composition start' sequence).  Thus, we must check it by:
        ! COMPOSING_P (coding)
Could you please modify that macro as above, and try again?

---
Ken'ichi HANDA
handa@etl.go.jp



reply via email to

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