diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 10ac91915c6..a3091015d9b 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1247,7 +1247,7 @@ buffer_local_value (Lisp_Object variable, Lisp_Object buffer) | |||
| 1247 | { /* Look in local_var_alist. */ | 1247 | { /* Look in local_var_alist. */ |
| 1248 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym); | 1248 | struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym); |
| 1249 | XSETSYMBOL (variable, sym); /* Update In case of aliasing. */ | 1249 | XSETSYMBOL (variable, sym); /* Update In case of aliasing. */ |
| 1250 | result = Fassoc (variable, BVAR (buf, local_var_alist), Qnil); | 1250 | result = assq_no_quit (variable, BVAR (buf, local_var_alist)); |
| 1251 | if (!NILP (result)) | 1251 | if (!NILP (result)) |
| 1252 | { | 1252 | { |
| 1253 | if (blv->fwd.fwdptr) | 1253 | if (blv->fwd.fwdptr) |