aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog142
1 files changed, 140 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f3e8b58e071..a6913d1ad78 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,141 @@
12012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
2
3 Use INTERNAL_FIELD for conses and overlays.
4 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
5 Remove obsolete comment.
6 (MVAR): New macro.
7 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
9
102012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
11
12 Use INTERNAL_FIELD for symbols.
13 * lisp.h (SVAR): New macro. Adjust users.
14 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
15 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
16
172012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
18
19 Use INTERNAL_FIELD for processes.
20 * process.h (PVAR): New macro. Adjust style.
21 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
22 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
23
242012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
25
26 Use INTERNAL_FIELD for windows.
27 * window.h (WVAR): New macro.
28 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
29 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
30 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
31 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
32 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
33 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
34
352012-08-01 Paul Eggert <eggert@cs.ucla.edu>
36
37 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
38
392012-08-01 Glenn Morris <rgm@gnu.org>
40
41 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
42 Move to configure.ac.
43
442012-08-01 Juanma Barranquero <lekktu@gmail.com>
45
46 * makefile.w32-in (CONFIG_H): Update dependencies.
47 (CONF_POST_H): New macro.
48
49 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
50
512012-07-31 Glenn Morris <rgm@gnu.org>
52
53 * Makefile.in (S_FILE): No longer set by configure.
54
55 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
56 is available.
57 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
58
59 * process.h (NULL_DEVICE):
60 * emacs.c (SEPCHAR):
61 * editfns.c (USER_FULL_NAME): Let configure set them.
62
63 * s/README, s/template.h: Remove files.
64
65 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
66
67 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
68 Move to configure.ac.
69
702012-07-31 Eli Zaretskii <eliz@gnu.org>
71
72 * .gdbinit (xframe): Adapt to introduction of FVAR and the
73 resulting renaming of 'struct frame' members.
74
75 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
76
77 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
78 after introduction of FVAR.
79
802012-07-31 Jan Djärv <jan.h.d@swipnet.se>
81
82 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
83
84 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
85 instead of compositeToPoint.
86 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
87
88 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
89
902012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
91
92 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
93 * lisp.h (INTERNAL_FIELD): New macro.
94 * buffer.h (BUFFER_INTERNAL_FIELD): Removed.
95 (BVAR): Change to use INTERNAL_FIELD.
96 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
97 (KVAR): Change to use INTERNAL_FIELD.
98 * frame.h (FVAR): New macro.
99 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
100 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
101 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
102 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
103 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
104
1052012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
106
107 Miscellaneous fixes for non-default X toolkits.
108 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
109 * xterm.c (x_frame_of_widget): Remove redundant prototype.
110 Move under #ifdef USE_LUCID.
111 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
112 definition and usage to avoid warnings.
113
1142012-07-31 Jan Djärv <jan.h.d@swipnet.se>
115
116 * nsterm.m (openFiles): Fix previous checkin.
117
1182012-07-31 Paul Eggert <eggert@cs.ucla.edu>
119
120 * indent.c (compute_motion): Remove unused local.
121
1222012-07-31 Glenn Morris <rgm@gnu.org>
123
124 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
125
126 * conf_post.h [USG5_4]:
127 Move remaining contents of s/usg5-4-common.h here.
128 * s/usg5-4-common.h: Remove file.
129
130 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
131 * s/irix6-5.h: Remove file.
132
133 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
134 * s/darwin.h: Remove file.
135
136 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
137 * s/hpux10-20.h: Remove file, which is now empty.
138
12012-07-30 Glenn Morris <rgm@gnu.org> 1392012-07-30 Glenn Morris <rgm@gnu.org>
2 140
3 * conf_post.h: New, split from configure.ac's AH_BOTTOM. 141 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
@@ -7,7 +145,7 @@
72012-07-30 Jan Djärv <jan.h.d@swipnet.se> 1452012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8 146
9 * nsterm.m (ns_do_open_file): New variable. 147 * nsterm.m (ns_do_open_file): New variable.
10 (ns_term_init): Set ns_do_open_file to NO after run returns. 148 (ns_term_init): Set ns_do_open_file to YES after run returns.
11 (openFile, openTempFile, openFileWithoutUI, openFiles): Open 149 (openFile, openTempFile, openFileWithoutUI, openFiles): Open
12 files only if ns_do_open_file. 150 files only if ns_do_open_file.
13 151
@@ -977,7 +1115,7 @@
977 1115
9782012-07-13 Glenn Morris <rgm@gnu.org> 11162012-07-13 Glenn Morris <rgm@gnu.org>
979 1117
980 * s/bsd-common, s/cygwin.h: Remove empty files. 1118 * s/bsd-common.h, s/cygwin.h: Remove empty files.
981 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h. 1119 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
982 1120
983 * s/usg5-4-common.h (USG, USG5): 1121 * s/usg5-4-common.h (USG, USG5):