diff options
| author | Dmitry Antipov | 2012-08-06 14:24:26 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-08-06 14:24:26 +0400 |
| commit | 077288cf3f654776ee44bc9b56954c4e26b10d96 (patch) | |
| tree | 00bbcb4dab9c879efde73a01786977b1c1364f67 /src/fontset.c | |
| parent | 71688bd7f9169c12ea8be54e084470f19d44ce44 (diff) | |
| download | emacs-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/fontset.c')
| -rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index 7f6fdeda36f..7a2c0912d6f 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1841,7 +1841,7 @@ DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0, | |||
| 1841 | if (NILP (window)) | 1841 | if (NILP (window)) |
| 1842 | return Qnil; | 1842 | return Qnil; |
| 1843 | w = XWINDOW (window); | 1843 | w = XWINDOW (window); |
| 1844 | f = XFRAME (WVAR (w, frame)); | 1844 | f = XFRAME (WGET (w, frame)); |
| 1845 | face_id = face_at_buffer_position (w, pos, -1, -1, &dummy, | 1845 | face_id = face_at_buffer_position (w, pos, -1, -1, &dummy, |
| 1846 | pos + 100, 0, -1); | 1846 | pos + 100, 0, -1); |
| 1847 | } | 1847 | } |