GNU bug report logs -
#48264
28.0.50; Changing the default for DEFVAR_PER_BUFFER variables takes O(#buffers) time
Previous Next
Full log
View this message in rfc822 format
> From: Spencer Baugh <sbaugh <at> catern.com>
> Date: Thu, 6 May 2021 17:33:38 -0400
> Cc: Spencer Baugh <sbaugh <at> catern.com>
>
> For buffer variables without a default, we still use BVAR. For any
> buffer variable with a default, we use BVAR_OR_DEFAULT. A later
> commit will statically enforce this.
This part says they are the same:
> --- a/src/buffer.h
> +++ b/src/buffer.h
> @@ -284,6 +284,8 @@ struct buffer_text
>
> #define BVAR(buf, field) ((buf)->field ## _)
>
> +#define BVAR_OR_DEFAULT(buf, field) BVAR (buf, field)
What am I missing here?
Also, I have a question: suppose we have a variable that is defined
with DEFVAR_LISP, and then some Lisp calls make-variable-buffer-local:
how will that work with these two macros when the C code needs to
access the buffer-local value?
This bug report was last modified 2 years and 289 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.