aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorDmitry Antipov2012-08-06 14:24:26 +0400
committerDmitry Antipov2012-08-06 14:24:26 +0400
commit077288cf3f654776ee44bc9b56954c4e26b10d96 (patch)
tree00bbcb4dab9c879efde73a01786977b1c1364f67 /src/alloc.c
parent71688bd7f9169c12ea8be54e084470f19d44ce44 (diff)
downloademacs-077288cf3f654776ee44bc9b56954c4e26b10d96.tar.gz
emacs-077288cf3f654776ee44bc9b56954c4e26b10d96.zip
Separate read and write access to Lisp_Object slots of struct window.
* window.h (WGET, WSET): New macros similar to AREF and ASET. * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c: * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c: * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m: * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c: * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 7d1ff7625f2..0f425668a11 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6015,7 +6015,7 @@ mark_object (Lisp_Object arg)
6015 /* Mark glyphs for leaf windows. Marking window 6015 /* Mark glyphs for leaf windows. Marking window
6016 matrices is sufficient because frame matrices 6016 matrices is sufficient because frame matrices
6017 use the same glyph memory. */ 6017 use the same glyph memory. */
6018 if (NILP (WVAR (w, hchild)) && NILP (WVAR (w, vchild)) 6018 if (NILP (WGET (w, hchild)) && NILP (WGET (w, vchild))
6019 && w->current_matrix) 6019 && w->current_matrix)
6020 { 6020 {
6021 mark_glyph_matrix (w->current_matrix); 6021 mark_glyph_matrix (w->current_matrix);