all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* cannot compile buffer.c
@ 2011-04-27  7:48 Yoshiaki Kasahara
  2011-04-27  8:08 ` Paul Eggert
  0 siblings, 1 reply; 2+ messages in thread
From: Yoshiaki Kasahara @ 2011-04-27  7:48 UTC (permalink / raw
  To: emacs-devel

Hello,

I needed a simple patch to compile buffer.c.  It seems that one line
was overlooked when 'struct buffer' was modified.

=== modified file 'src/buffer.c'
--- src/buffer.c	2011-04-26 06:17:52 +0000
+++ src/buffer.c	2011-04-27 07:18:33 +0000
@@ -5155,7 +5155,7 @@
       Map new memory.  */
    struct buffer *b;
 
-   for (b = all_buffers; b; b = b->next)
+   for (b = all_buffers; b; b = b->header.next.buffer)
      if (b->text->beg == NULL)
        enlarge_buffer_text (b, 0);
  }

-- 
Yoshiaki Kasahara
Research Institute for Information Technology, Kyushu University
kasahara@nc.kyushu-u.ac.jp



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: cannot compile buffer.c
  2011-04-27  7:48 cannot compile buffer.c Yoshiaki Kasahara
@ 2011-04-27  8:08 ` Paul Eggert
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggert @ 2011-04-27  8:08 UTC (permalink / raw
  To: Yoshiaki Kasahara; +Cc: emacs-devel

On 04/27/11 00:48, Yoshiaki Kasahara wrote:

> It seems that one line
> was overlooked when 'struct buffer' was modified.

Thanks, I committed that to the trunk in your name.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-04-27  8:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-27  7:48 cannot compile buffer.c Yoshiaki Kasahara
2011-04-27  8:08 ` Paul Eggert

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.