aboutsummaryrefslogtreecommitdiffstats
path: root/src/intervals.c
diff options
context:
space:
mode:
authorKen Raeburn1999-09-13 02:23:04 +0000
committerKen Raeburn1999-09-13 02:23:04 +0000
commit03699b140e13aee5b49fa4678e97dff5855e789c (patch)
tree79213225b326eeaa5385bf863f2e3c2df62963e5 /src/intervals.c
parent926106201f8bfebbaac3c5b0f5e36192b7f00f1b (diff)
downloademacs-03699b140e13aee5b49fa4678e97dff5855e789c.tar.gz
emacs-03699b140e13aee5b49fa4678e97dff5855e789c.zip
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Diffstat (limited to 'src/intervals.c')
-rw-r--r--src/intervals.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 159cc3693ac..73e2e675568 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -867,7 +867,7 @@ adjust_intervals_for_insertion (tree, position, length)
867 for (tail = i->plist; ! NILP (tail); tail = Fcdr (Fcdr (tail))) 867 for (tail = i->plist; ! NILP (tail); tail = Fcdr (Fcdr (tail)))
868 { 868 {
869 Lisp_Object prop; 869 Lisp_Object prop;
870 prop = XCONS (tail)->car; 870 prop = XCAR (tail);
871 871
872 /* Is this particular property rear-sticky? 872 /* Is this particular property rear-sticky?
873 Note, if REAR isn't a cons, it must be non-nil, 873 Note, if REAR isn't a cons, it must be non-nil,