[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Question about some code in make-indirect-buffer
From: |
Gerd Moellmann |
Subject: |
Re: Question about some code in make-indirect-buffer |
Date: |
22 Nov 2000 23:35:04 +0100 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.92 |
John Wiegley <address@hidden> writes:
> In buffer.c, in Fmake_indirect_buffer, it says:
>
> base_buffer = Fget_buffer (base_buffer);
> if (NILP (base_buffer))
> error ("No such buffer: `%s'",
> XSTRING (XBUFFER (base_buffer)->name)->data);
>
> If `base_buffer' has just been found to be NIL, isn't the code in the
> error call always going to be fatal?
Yes, indeed. Thanks for spotting this; I've fixed it.