diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index a155fe6f84a..fd515af5003 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1311,10 +1311,10 @@ set_internal (Lisp_Object symbol, Lisp_Object newval, Lisp_Object where, | |||
| 1311 | 1311 | ||
| 1312 | /* Find the new binding. */ | 1312 | /* Find the new binding. */ |
| 1313 | XSETSYMBOL (symbol, sym); /* May have changed via aliasing. */ | 1313 | XSETSYMBOL (symbol, sym); /* May have changed via aliasing. */ |
| 1314 | tem1 = Fassq (symbol, | 1314 | tem1 = assq_no_quit (symbol, |
| 1315 | (blv->frame_local | 1315 | (blv->frame_local |
| 1316 | ? XFRAME (where)->param_alist | 1316 | ? XFRAME (where)->param_alist |
| 1317 | : BVAR (XBUFFER (where), local_var_alist))); | 1317 | : BVAR (XBUFFER (where), local_var_alist))); |
| 1318 | set_blv_where (blv, where); | 1318 | set_blv_where (blv, where); |
| 1319 | blv->found = 1; | 1319 | blv->found = 1; |
| 1320 | 1320 | ||