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 4cb569bd943..5aeb24b16dc 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1241,10 +1241,10 @@ set_internal (Lisp_Object symbol, Lisp_Object newval, Lisp_Object where, | |||
| 1241 | 1241 | ||
| 1242 | /* Find the new binding. */ | 1242 | /* Find the new binding. */ |
| 1243 | XSETSYMBOL (symbol, sym); /* May have changed via aliasing. */ | 1243 | XSETSYMBOL (symbol, sym); /* May have changed via aliasing. */ |
| 1244 | tem1 = Fassq (symbol, | 1244 | tem1 = assq_no_quit (symbol, |
| 1245 | (blv->frame_local | 1245 | (blv->frame_local |
| 1246 | ? XFRAME (where)->param_alist | 1246 | ? XFRAME (where)->param_alist |
| 1247 | : BVAR (XBUFFER (where), local_var_alist))); | 1247 | : BVAR (XBUFFER (where), local_var_alist))); |
| 1248 | set_blv_where (blv, where); | 1248 | set_blv_where (blv, where); |
| 1249 | blv->found = 1; | 1249 | blv->found = 1; |
| 1250 | 1250 | ||