diff options
| author | Dmitry Antipov | 2012-07-31 16:36:19 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-07-31 16:36:19 +0400 |
| commit | e34f7f79833a23586d32fe522b547a0d9a696c13 (patch) | |
| tree | 4a2d3927202cb91b474bc9648ca9dee2bffaa54a /src/ChangeLog | |
| parent | c09bfb2f140b2885af17185634451e2abfd6e91c (diff) | |
| download | emacs-e34f7f79833a23586d32fe522b547a0d9a696c13.tar.gz emacs-e34f7f79833a23586d32fe522b547a0d9a696c13.zip | |
Generalize INTERNAL_FIELD between buffers, keyboards and frames.
* src/lisp.h (INTERNAL_FIELD): New macro.
* src/buffer.h (BUFFER_INTERNAL_FIELD): Removed.
(BVAR): Change to use INTERNAL_FIELD.
* src/keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
(KVAR): Change to use INTERNAL_FIELD.
* src/frame.h (FVAR): New macro.
(struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
* src/alloc.c, src/buffer.c, src/data.c, src/dispnew.c, src/dosfns.c
* src/eval.c, src/frame.c, src/fringe.c, src/gtkutil.c, src/minibuf.c
* src/nsfns.m, src/nsterm.m, src/print.c, src/term.c, src/w32fns.c
* src/w32menu.c, src/w32term.c, src/window.c, src/window.h, src/xdisp.c
* src/xfaces.c, src/xfns.c, src/xmenu.c, src/xterm.c: Users changed.
* admin/coccinelle/frame.cocci: Semantic patch to replace direct
access to Lisp_Object members of struct frame to FVAR.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0c791bcd17c..ed398888285 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,20 @@ | |||
| 1 | 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | Generalize INTERNAL_FIELD between buffers, keyboards and frames. | ||
| 4 | * lisp.h (INTERNAL_FIELD): New macro. | ||
| 5 | * buffer.h (BUFFER_INTERNAL_FIELD): Removed. | ||
| 6 | (BVAR): Change to use INTERNAL_FIELD. | ||
| 7 | * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise. | ||
| 8 | (KVAR): Change to use INTERNAL_FIELD. | ||
| 9 | * frame.h (FVAR): New macro. | ||
| 10 | (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields. | ||
| 11 | * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c | ||
| 12 | * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c | ||
| 13 | * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h, | ||
| 14 | * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed. | ||
| 15 | |||
| 16 | 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 17 | |||
| 3 | Miscellaneous fixes for non-default X toolkits. | 18 | Miscellaneous fixes for non-default X toolkits. |
| 4 | * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings. | 19 | * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings. |
| 5 | * xterm.c (x_frame_of_widget): Remove redundant prototype. | 20 | * xterm.c (x_frame_of_widget): Remove redundant prototype. |