[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: address@hidden: Endless Loop with diary entries]
From: |
Harald . Maier . BW |
Subject: |
Re: address@hidden: Endless Loop with diary entries] |
Date: |
Sat, 10 Aug 2002 07:23:06 +0200 |
User-agent: |
Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2.90 (i386-mingw-nt5.0.2195) |
address@hidden (Gerd Moellmann) writes:
>
> Does this patch fix it for you? (I'm about to install it, too.)
Yes, perfect! Diary works now again fine.
Harald
> Index: xdisp.c
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/src/xdisp.c,v
> retrieving revision 1.775
> diff -c -c -r1.775 xdisp.c
> *** xdisp.c 3 Aug 2002 12:44:18 -0000 1.775
> --- xdisp.c 9 Aug 2002 17:24:43 -0000
> ***************
> *** 3869,3875 ****
> n += STRINGP (it->string) ? 0 : 1)
> {
> if (!get_next_display_element (it))
> ! break;
> newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
> set_iterator_to_next (it, 0);
> }
> --- 3869,3875 ----
> n += STRINGP (it->string) ? 0 : 1)
> {
> if (!get_next_display_element (it))
> ! return 0;
> newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
> set_iterator_to_next (it, 0);
> }