aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-05-31 19:49:51 -0700
committerPaul Eggert2011-05-31 19:49:51 -0700
commit7e655d386397029b7ce6ac204fc41e5ddc92cf54 (patch)
tree75ffb3cd91672a517cfa643d6f45253c62526e41 /src
parentccd9a01aa7b67dd3d71b49e3c30df04dd39b4cae (diff)
parent357e1c676cba36d5fa7b6819425a38cbad0c30cd (diff)
downloademacs-7e655d386397029b7ce6ac204fc41e5ddc92cf54.tar.gz
emacs-7e655d386397029b7ce6ac204fc41e5ddc92cf54.zip
Merge from trunk.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog23
-rw-r--r--src/data.c4
-rw-r--r--src/dispnew.c9
-rw-r--r--src/frame.c2
-rw-r--r--src/makefile.w32-in2
5 files changed, 27 insertions, 13 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4a9e651e4d1..6d1b740de9c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -14,6 +14,29 @@
14 (access_keymap): NATNUMP -> INTEGERP, since the integer must be 14 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
15 nonnegative. 15 nonnegative.
16 16
172011-05-31 Juanma Barranquero <lekktu@gmail.com>
18
19 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
20 Update dependencies.
21
222011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
23
24 * data.c (init_data): Remove code for UTS, this system is not
25 supported anymore.
26
272011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
28
29 Don't force ./temacs to start in terminal mode.
30
31 * frame.c (make_initial_frame): Initialize faces in all cases, not
32 only when CANNOT_DUMP is defined.
33 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
34
352011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
36
37 * dispnew.c (add_window_display_history): Use const for the string
38 pointer. Remove declaration, not needed.
39
172011-05-31 Paul Eggert <eggert@cs.ucla.edu> 402011-05-31 Paul Eggert <eggert@cs.ucla.edu>
18 41
19 Use 'inline', not 'INLINE'. 42 Use 'inline', not 'INLINE'.
diff --git a/src/data.c b/src/data.c
index 443d78376d9..78bd454056d 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3220,8 +3220,4 @@ init_data (void)
3220 return; 3220 return;
3221#endif /* CANNOT_DUMP */ 3221#endif /* CANNOT_DUMP */
3222 signal (SIGFPE, arith_error); 3222 signal (SIGFPE, arith_error);
3223
3224#ifdef uts
3225 signal (SIGEMT, arith_error);
3226#endif /* uts */
3227} 3223}
diff --git a/src/dispnew.c b/src/dispnew.c
index cd20bd6e9aa..501dc4ffd80 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -290,7 +290,6 @@ static int history_idx;
290static unsigned history_tick; 290static unsigned history_tick;
291 291
292static void add_frame_display_history (struct frame *, int); 292static void add_frame_display_history (struct frame *, int);
293static void add_window_display_history (struct window *, char *, int);
294 293
295/* Add to the redisplay history how window W has been displayed. 294/* Add to the redisplay history how window W has been displayed.
296 MSG is a trace containing the information how W's glyph matrix 295 MSG is a trace containing the information how W's glyph matrix
@@ -298,7 +297,7 @@ static void add_window_display_history (struct window *, char *, int);
298 has been interrupted for pending input. */ 297 has been interrupted for pending input. */
299 298
300static void 299static void
301add_window_display_history (struct window *w, char *msg, int paused_p) 300add_window_display_history (struct window *w, const char *msg, int paused_p)
302{ 301{
303 char *buf; 302 char *buf;
304 303
@@ -6234,11 +6233,7 @@ init_display (void)
6234 } 6233 }
6235 } 6234 }
6236 6235
6237 if (!inhibit_window_system && display_arg 6236 if (!inhibit_window_system && display_arg)
6238#ifndef CANNOT_DUMP
6239 && initialized
6240#endif
6241 )
6242 { 6237 {
6243 Vinitial_window_system = Qx; 6238 Vinitial_window_system = Qx;
6244#ifdef HAVE_X11 6239#ifdef HAVE_X11
diff --git a/src/frame.c b/src/frame.c
index 74e222f85fc..6008ba9567a 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -544,10 +544,8 @@ make_initial_frame (void)
544 /* The default value of menu-bar-mode is t. */ 544 /* The default value of menu-bar-mode is t. */
545 set_menu_bar_lines (f, make_number (1), Qnil); 545 set_menu_bar_lines (f, make_number (1), Qnil);
546 546
547#ifdef CANNOT_DUMP
548 if (!noninteractive) 547 if (!noninteractive)
549 init_frame_faces (f); 548 init_frame_faces (f);
550#endif
551 549
552 return f; 550 return f;
553} 551}
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 060b565b308..8da589a7115 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -654,6 +654,7 @@ $(BLD)/data.$(O) : \
654 $(SRC)/data.c \ 654 $(SRC)/data.c \
655 $(CONFIG_H) \ 655 $(CONFIG_H) \
656 $(EMACS_ROOT)/nt/inc/sys/time.h \ 656 $(EMACS_ROOT)/nt/inc/sys/time.h \
657 $(EMACS_ROOT)/lib/intprops.h \
657 $(LISP_H) \ 658 $(LISP_H) \
658 $(SRC)/buffer.h \ 659 $(SRC)/buffer.h \
659 $(SRC)/ccl.h \ 660 $(SRC)/ccl.h \
@@ -753,6 +754,7 @@ $(BLD)/editfns.$(O) : \
753 $(EMACS_ROOT)/nt/inc/sys/time.h \ 754 $(EMACS_ROOT)/nt/inc/sys/time.h \
754 $(EMACS_ROOT)/lib/intprops.h \ 755 $(EMACS_ROOT)/lib/intprops.h \
755 $(EMACS_ROOT)/lib/strftime.h \ 756 $(EMACS_ROOT)/lib/strftime.h \
757 $(EMACS_ROOT)/lib/verify.h \
756 $(LISP_H) \ 758 $(LISP_H) \
757 $(SRC)/atimer.h \ 759 $(SRC)/atimer.h \
758 $(SRC)/blockinput.h \ 760 $(SRC)/blockinput.h \