diff options
| author | Ken Raeburn | 2001-10-16 09:09:51 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2001-10-16 09:09:51 +0000 |
| commit | f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f (patch) | |
| tree | 43eb51ff0ca4af1705387403827ef210098f2da8 /src/frame.c | |
| parent | 018ba359ab456f6a43f3acea0c15df616aa0ad02 (diff) | |
| download | emacs-f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f.tar.gz emacs-f3fbd1553534bb85c75baf891c0ca9aaa4c3fa6f.zip | |
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
with lisp system changes.
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index f6a4ee8e2cf..2bed16b9503 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -543,7 +543,7 @@ Note that changing the size of one terminal frame automatically affects all.") | |||
| 543 | the vectors which are the CDRs of associations in face_alist to | 543 | the vectors which are the CDRs of associations in face_alist to |
| 544 | be copied as well. */ | 544 | be copied as well. */ |
| 545 | for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem)) | 545 | for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem)) |
| 546 | XCDR (XCAR (tem)) = Fcopy_sequence (XCDR (XCAR (tem))); | 546 | XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem)))); |
| 547 | return frame; | 547 | return frame; |
| 548 | } | 548 | } |
| 549 | 549 | ||