all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Keiichiro Nagano" <knagano@sodan.org>
Subject: window.c initialization fix
Date: Mon, 22 Apr 2002 05:38:55 +0900	[thread overview]
Message-ID: <m3k7r0g528.wl@omni-engine.com> (raw)

Hi,

In make_window, p->height_fixed_p, p->last_cursor_off_p and
p->cursor_off_p are not initialized to zero.  I think this is a bug.

(Now I'm working for 'portable dumper', a new feature for Emacs.  I
was troubled by this bug, bacause, with portable dumper, all basic
Lisp_Objects (Qnil, Qt, Vobarray and so on) are relocated to unusual
address.)

-- 
Keiichiro Nagano



Index: window.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/window.c,v
retrieving revision 1.412
diff -u -u -r1.412 window.c
--- window.c	   17 Apr 2002 10:36:08 -0000	1.412
+++ window.c	   21 Apr 2002 20:20:39 -0000
@@ -287,6 +287,8 @@
   XSETWINDOW (val, p);
   XSETFASTINT (p->last_point, 0);
   p->frozen_window_start_p = 0;
+  p->height_fixed_p = 0;
+  p->last_cursor_off_p = p->cursor_off_p = 0;
 
   Vwindow_list = Qnil;
   return val;

             reply	other threads:[~2002-04-21 20:38 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-21 20:38 Keiichiro Nagano [this message]
2002-04-22  9:01 ` window.c initialization fix Pavel Janík
2002-04-22 10:19   ` portable dumper (Re: window.c initialization fix) Keiichiro Nagano
2002-04-23 19:31     ` Richard Stallman
2002-04-25  2:58       ` Keiichiro Nagano
2002-04-26  3:19         ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3k7r0g528.wl@omni-engine.com \
    --to=knagano@sodan.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.