From: Paul Eggert Date: Mon, 25 Apr 2011 07:33:57 +0000 (-0700) Subject: Fix minor typos in previous change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~220 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=179dade40292e5bdccdd4ab88748a06a94307570;p=emacs.git Fix minor typos in previous change. --- diff --git a/src/alloc.c b/src/alloc.c index c9496ecf25c..0de83f02f65 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5361,7 +5361,7 @@ mark_object (Lisp_Object arg) if (po != &buffer_defaults && po != &buffer_local_symbols) { struct buffer *b; - for (b = all_buffers; b && b != po; b = b->header.next) + for (b = all_buffers; b && b != po; b = b->header.next.buffer) ; if (b == NULL) abort (); diff --git a/src/buffer.c b/src/buffer.c index 6ced4fbae87..aa50eff4fd0 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -43,7 +43,7 @@ along with GNU Emacs. If not, see . */ struct buffer *current_buffer; /* the current buffer */ /* First buffer in chain of all buffers (in reverse order of creation). - Threaded through ->header.next. */ + Threaded through ->header.next.buffer. */ struct buffer *all_buffers;