aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2004-06-02 00:53:13 +0000
committerJuanma Barranquero2004-06-02 00:53:13 +0000
commit86d373e6b2e271fd2a5c98cee8a9710c23c5fda8 (patch)
treeddc50660e858ae2a392a70d5dbdf83fa50dbb9f2
parentb0da69a77b64c420c6e6157ee1ca0baac29fcd8d (diff)
downloademacs-86d373e6b2e271fd2a5c98cee8a9710c23c5fda8.tar.gz
emacs-86d373e6b2e271fd2a5c98cee8a9710c23c5fda8.zip
*** empty log message ***
-rw-r--r--lib-src/ChangeLog11
-rw-r--r--lisp/ChangeLog23
-rw-r--r--src/ChangeLog32
3 files changed, 50 insertions, 16 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index ac789eb3181..9f3fcc13371 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,6 +1,11 @@
12004-06-01 Juanma Barranquero <lektu@terra.es>
2
3 * makefile.w32-in (obj): Add image.c.
4
12004-05-10 Thien-Thi Nguyen <ttn@gnu.org> 52004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2 6
3 * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'. 7 * test-distrib.c (main): For failing cases, exit with
8 `EXIT_FAILURE'.
4 9
52004-05-08 Jason Rumney <jasonr@gnu.org> 102004-05-08 Jason Rumney <jasonr@gnu.org>
6 11
@@ -14,8 +19,8 @@
14 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value. 19 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
15 20
16 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c, 21 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
17 make-docfile.c, movemail.c, profile.c, sorted-doc.c, 22 * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
18 test-distrib.c, update-game-score.c, yow.c: Likewise. 23 * test-distrib.c, update-game-score.c, yow.c: Likewise.
19 24
202004-05-08 Thien-Thi Nguyen <ttn@gnu.org> 252004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
21 26
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c4ec3e6323c..2ecf59b55aa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,17 @@
12004-06-02 Juanma Barranquero <lektu@terra.es>
2
3 * faces.el (frame-update-faces): Add empty docstring so the one
4 for `ignore' doesn't show through.
5
6 * subr.el (process-kill-without-query): Remove spurious "\n" on
7 obsolescence string.
8 (focus-frame, unfocus-frame): Add obsolescence declaration and
9 empty docstring.
10
11 * international/mule.el (register-char-codings): Make alias for
12 `ignore'. Move docstring to obsolescence info and remove
13 redundancy.
14
12004-06-02 Kim F. Storm <storm@cua.dk> 152004-06-02 Kim F. Storm <storm@cua.dk>
2 16
3 * frame.el (blink-cursor-start): Turn cursor off initially so blink 17 * frame.el (blink-cursor-start): Turn cursor off initially so blink
@@ -229,8 +243,10 @@
2292004-05-28 Juanma Barranquero <lektu@terra.es> 2432004-05-28 Juanma Barranquero <lektu@terra.es>
230 244
231 * cus-edit.el (customize-face, customize-face-other-window) 245 * cus-edit.el (customize-face, customize-face-other-window)
232 (custom-face-edit-delete): Make arguments match their use in docstring. 246 (custom-face-edit-delete): Make arguments match their use in
233 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Docstring typo. 247 docstring.
248 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
249 docstring.
234 250
235 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast', 251 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
236 not `cvs-butlast'. 252 not `cvs-butlast'.
@@ -705,7 +721,8 @@
705 721
7062004-05-11 Juanma Barranquero <lektu@terra.es> 7222004-05-11 Juanma Barranquero <lektu@terra.es>
707 723
708 * custom.el (custom-initialize-default, defcustom): Typo in docstring. 724 * custom.el (custom-initialize-default, defcustom):
725 Fix typo in docstring.
709 726
710 * files.el (set-visited-file-name, file-expand-wildcards): 727 * files.el (set-visited-file-name, file-expand-wildcards):
711 Fix docstring. 728 Fix docstring.
diff --git a/src/ChangeLog b/src/ChangeLog
index ecae93d1309..260d0cf3b53 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12004-06-02 Juanma Barranquero <lektu@terra.es>
2
3 Work around bugs/problems with MinGW builds of graphics libraries
4 called from MSVC builds of Emacs.
5
6 * image.c (lookup_image): Make pointer to img static.
7 (png_read_from_memory): Disable "global" optimization.
8
12004-06-01 Stefan Monnier <monnier@iro.umontreal.ca> 92004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 10
3 * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true. 11 * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
@@ -6,9 +14,10 @@
6 14
7 * macfns.c: Don't include ccl.h. 15 * macfns.c: Don't include ccl.h.
8 [MAC_OSX]: Don't include QuickTime/QuickTime.h. 16 [MAC_OSX]: Don't include QuickTime/QuickTime.h.
9 [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, 17 [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
10 or TextUtils.h. 18 TextUtils.h.
11 (Fx_create_frame): Sync with xfns.c. Initialize cursor descriptors. 19 (Fx_create_frame): Sync with xfns.c. Initialize cursor
20 descriptors.
12 (Fx_display_mm_height, Fx_display_mm_width): Calculate length from 21 (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
13 display height/width. 22 display height/width.
14 (compute_tip_xy, Vx_max_tooltip_size): Declare. 23 (compute_tip_xy, Vx_max_tooltip_size): Declare.
@@ -19,7 +28,8 @@
19 28
20 * macgui.h [!MAC_OSX]: Include Gestalt.h. 29 * macgui.h [!MAC_OSX]: Include Gestalt.h.
21 (Cursor, No_Cursor): New defines. 30 (Cursor, No_Cursor): New defines.
22 [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility macro. 31 [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility
32 macro.
23 [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare. 33 [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
24 34
25 * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort. 35 * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
@@ -47,9 +57,11 @@
47 (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a 57 (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
48 scroll-bar click event. 58 scroll-bar click event.
49 (mac_define_frame_cursor): Change the pointer shape. 59 (mac_define_frame_cursor): Change the pointer shape.
50 (x_free_frame_resources): Reset tip_window to NULL when it is disposed. 60 (x_free_frame_resources): Reset tip_window to NULL when it is
61 disposed.
51 [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable. 62 [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
52 [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize arrow_cursor. 63 [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize
64 arrow_cursor.
53 (do_window_update): Don't do anything if the updated window is the 65 (do_window_update): Don't do anything if the updated window is the
54 tooltip window. 66 tooltip window.
55 (do_mouse_moved): Handle mouse movement events here (previously in 67 (do_mouse_moved): Handle mouse movement events here (previously in
@@ -57,8 +69,8 @@
57 dpyinfo->mouse_face_hidden is set. 69 dpyinfo->mouse_face_hidden is set.
58 (do_os_event, do_events): Remove (now in XTread_socket). 70 (do_os_event, do_events): Remove (now in XTread_socket).
59 (XTread_socket): Immediately return if interrupt_input_blocked. 71 (XTread_socket): Immediately return if interrupt_input_blocked.
60 Loop until all the events in the queue are processed. 72 Loop until all the events in the queue are processed. Rearrange
61 Rearrange codes for mouse grabbing. Add tooltip support. Include the 73 codes for mouse grabbing. Add tooltip support. Include the
62 contents of do_os_event and do_events. Remove mouse movement 74 contents of do_os_event and do_events. Remove mouse movement
63 handling (now in do_mouse_moved). Add the case where 75 handling (now in do_mouse_moved). Add the case where
64 Vmouse_highlight has an integer value. 76 Vmouse_highlight has an integer value.
@@ -67,8 +79,8 @@
67 excess initializations. 79 excess initializations.
68 (make_mac_terminal_frame): Previous initializations in 80 (make_mac_terminal_frame): Previous initializations in
69 make_mac_frame are moved here. 81 make_mac_frame are moved here.
70 (mac_initialize_display_info): 82 (mac_initialize_display_info): Initialize
71 Initialize dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden. 83 dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
72 84
73 * xdisp.c [MAC_OS] (No_Cursor): Remove variable. 85 * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
74 (define_frame_cursor1): Don't treat HAVE_CARBON as a special case. 86 (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.