Mercurial > emacs
diff src/intervals.c @ 25662:0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
| author | Ken Raeburn <raeburn@raeburn.org> |
|---|---|
| date | Mon, 13 Sep 1999 02:23:04 +0000 |
| parents | b991eeca9d59 |
| children | 062f4c69ff56 |
line wrap: on
line diff
--- a/src/intervals.c Sun Sep 12 20:22:02 1999 +0000 +++ b/src/intervals.c Mon Sep 13 02:23:04 1999 +0000 @@ -867,7 +867,7 @@ for (tail = i->plist; ! NILP (tail); tail = Fcdr (Fcdr (tail))) { Lisp_Object prop; - prop = XCONS (tail)->car; + prop = XCAR (tail); /* Is this particular property rear-sticky? Note, if REAR isn't a cons, it must be non-nil,
