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/textprop.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/textprop.c')
| -rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c index 0cb09791f5e..b43503dfdb8 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -1738,7 +1738,7 @@ extend_property_ranges (list, old_end, new_end) | |||
| 1738 | end = XCAR (XCDR (item)); | 1738 | end = XCAR (XCDR (item)); |
| 1739 | 1739 | ||
| 1740 | if (EQ (end, old_end)) | 1740 | if (EQ (end, old_end)) |
| 1741 | XCAR (XCDR (item)) = new_end; | 1741 | XSETCAR (XCDR (item), new_end); |
| 1742 | } | 1742 | } |
| 1743 | } | 1743 | } |
| 1744 | 1744 | ||