aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorDmitry Antipov2012-08-07 11:33:18 +0400
committerDmitry Antipov2012-08-07 11:33:18 +0400
commitd3d50620ed3a8066c15ae3d3701b83371ca5382a (patch)
tree817b59ba17d232cd087b0b24d84683c8ff094f62 /src/alloc.c
parentd10a51dcdfab2d9283bd2e3229330c511d5af193 (diff)
downloademacs-d3d50620ed3a8066c15ae3d3701b83371ca5382a.tar.gz
emacs-d3d50620ed3a8066c15ae3d3701b83371ca5382a.zip
Drop WGET and revert read access to Lisp_Objects slots of struct window.
* window.h (WGET): Remove. (struct window): Do not use INTERNAL_FIELD. * 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 8d7980932cf..615d2f37afa 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6014,7 +6014,7 @@ mark_object (Lisp_Object arg)
6014 /* Mark glyphs for leaf windows. Marking window 6014 /* Mark glyphs for leaf windows. Marking window
6015 matrices is sufficient because frame matrices 6015 matrices is sufficient because frame matrices
6016 use the same glyph memory. */ 6016 use the same glyph memory. */
6017 if (NILP (WGET (w, hchild)) && NILP (WGET (w, vchild)) 6017 if (NILP (w->hchild) && NILP (w->vchild)
6018 && w->current_matrix) 6018 && w->current_matrix)
6019 { 6019 {
6020 mark_glyph_matrix (w->current_matrix); 6020 mark_glyph_matrix (w->current_matrix);