diff options
| author | Karoly Lorentey | 2006-01-06 16:13:05 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-01-06 16:13:05 +0000 |
| commit | a8bf7299ee74781dd485c33c5eac20aee0f0ebef (patch) | |
| tree | d2bc1c0d3d7a64a19945b5bb5d175cae37088bca /src/ChangeLog | |
| parent | e079ecf45241cc5d2904db7ede9592f9861bb9aa (diff) | |
| parent | 600bc46cd52fbdedf592158c6b03ccfca88dbade (diff) | |
| download | emacs-a8bf7299ee74781dd485c33c5eac20aee0f0ebef.tar.gz emacs-a8bf7299ee74781dd485c33c5eac20aee0f0ebef.zip | |
Merged from miles@gnu.org--gnu-2005 (patch 683-684)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-683
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-684
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-493
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 99 |
1 files changed, 84 insertions, 15 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6ad7c939bce..54c41d66413 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,74 @@ | |||
| 1 | 2006-01-06 Nick Roberts <nickrob@snap.net.nz> | ||
| 2 | |||
| 3 | * .gdbinit: Fix typo. | ||
| 4 | |||
| 5 | 2006-01-05 Eli Zaretskii <eliz@gnu.org> | ||
| 6 | |||
| 7 | * .gdbinit: Fix last change. | ||
| 8 | |||
| 9 | 2006-01-05 Kim F. Storm <storm@cua.dk> | ||
| 10 | |||
| 11 | * process.c (Fmake_network_process): Use AF_INET instead of | ||
| 12 | AF_UNSPEC when AF_INET6 is not defined. | ||
| 13 | |||
| 14 | 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 15 | |||
| 16 | * mac.c (mac_coerce_file_name_ptr, mac_coerce_file_name_desc): | ||
| 17 | Don't check that the other type is known file-related one. | ||
| 18 | |||
| 19 | * macfns.c (Fx_server_version): Use gestaltSystemVersionMajor, | ||
| 20 | gestaltSystemVersionMinor, and gestaltSystemVersionBugFix on Mac | ||
| 21 | OS X 10.4 and later. | ||
| 22 | |||
| 23 | 2006-01-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 24 | |||
| 25 | * gtkutil.c (xg_get_image_for_pixmap): If the image is from a file, | ||
| 26 | let GTK do all image processing. Importing Emacs own pixmaps to GTK | ||
| 27 | looks bad for inactive tool bar items with some Gnome themes. | ||
| 28 | |||
| 29 | 2006-01-04 Eli Zaretskii <eliz@gnu.org> | ||
| 30 | |||
| 31 | * .gdbinit: Avoid a warning message when x_error_quitter is not | ||
| 32 | compiled in. | ||
| 33 | |||
| 34 | * process.c [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support | ||
| 35 | for w32. | ||
| 36 | |||
| 37 | 2006-01-04 Kim F. Storm <storm@cua.dk> | ||
| 38 | |||
| 39 | * process.c: Add IPv6 support. | ||
| 40 | (Qipv4, Qipv6): New vars. | ||
| 41 | (syms_of_process): Intern and staticpro them. | ||
| 42 | (Fformat_network_address): Handle 9 or 8 element vector as IPv6 address | ||
| 43 | with or without port number. Handle 4 element vector as IPv4 address | ||
| 44 | without port number. | ||
| 45 | (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size) | ||
| 46 | (conv_lisp_to_sockaddr): Handle IPv6 addresses. | ||
| 47 | (Fmake_network_process): Use :family 'ipv4 and 'ipv6 to explicitly | ||
| 48 | request that address family only. :family nil or omitted means to | ||
| 49 | determine address family from the specified :host and :service. | ||
| 50 | (ifflag_table): Add missing OpenBSD IFF_ flags. | ||
| 51 | (server_accept_connection): Handle IPv6 addresses. | ||
| 52 | (init_process): Add (:family ipv4) and (:family ipv6) sub-features. | ||
| 53 | |||
| 54 | * .gdbinit: Undo last change. Instead, look at Vsystem_type to | ||
| 55 | determine which breakpoints to set. | ||
| 56 | |||
| 57 | 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 58 | |||
| 59 | * keymap.c (describe_map_compare): Yet another int/Lisp_Object mixup. | ||
| 60 | |||
| 61 | * window.h (Fwindow_minibuffer_p): Declare (for use in minibuf.c). | ||
| 62 | |||
| 63 | 2006-01-03 Romain Francoise <romain@orebokech.com> | ||
| 64 | |||
| 65 | * emacs.c (main): Update copyright year. | ||
| 66 | |||
| 67 | 2006-01-03 Ken Raeburn <raeburn@gnu.org> | ||
| 68 | |||
| 69 | * callproc.c (delete_temp_file): Bind file-name-handler-alist to | ||
| 70 | nil for the call to internal_delete_file. | ||
| 71 | |||
| 1 | 2006-01-01 Ken Raeburn <raeburn@gnu.org> | 72 | 2006-01-01 Ken Raeburn <raeburn@gnu.org> |
| 2 | 73 | ||
| 3 | * callproc.c (Fcall_process_region): Bind file-name-handler-alist | 74 | * callproc.c (Fcall_process_region): Bind file-name-handler-alist |
| @@ -48,7 +119,7 @@ | |||
| 48 | 119 | ||
| 49 | 2005-12-28 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 120 | 2005-12-28 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 50 | 121 | ||
| 51 | * gtkutil.c (xg_get_file_with_chooser): Changed message shown | 122 | * gtkutil.c (xg_get_file_with_chooser): Change message shown |
| 52 | in file chooser. | 123 | in file chooser. |
| 53 | 124 | ||
| 54 | 2005-12-27 Richard M. Stallman <rms@gnu.org> | 125 | 2005-12-27 Richard M. Stallman <rms@gnu.org> |
| @@ -122,8 +193,8 @@ | |||
| 122 | * macterm.h (TYPE_FILE_NAME): New define. | 193 | * macterm.h (TYPE_FILE_NAME): New define. |
| 123 | (posix_pathname_to_fsspec, fsspec_to_posix_pathname): Remove externs. | 194 | (posix_pathname_to_fsspec, fsspec_to_posix_pathname): Remove externs. |
| 124 | 195 | ||
| 125 | * mac.c (posix_pathname_to_fsspec, fsspec_to_posix_pathname): Add | 196 | * mac.c (posix_pathname_to_fsspec, fsspec_to_posix_pathname): |
| 126 | prototypes. Make static. | 197 | Add prototypes. Make static. |
| 127 | (mac_aedesc_to_lisp): Initialize err to noErr. | 198 | (mac_aedesc_to_lisp): Initialize err to noErr. |
| 128 | (mac_coerce_file_name_ptr, mac_coerce_file_name_desc) | 199 | (mac_coerce_file_name_ptr, mac_coerce_file_name_desc) |
| 129 | (init_coercion_handler): New functions. | 200 | (init_coercion_handler): New functions. |
| @@ -167,8 +238,8 @@ | |||
| 167 | * macgui.h (XCharStruct): Remove member `valid_p'. | 238 | * macgui.h (XCharStruct): Remove member `valid_p'. |
| 168 | (STORE_XCHARSTRUCT): Don't set member `valid_p'. | 239 | (STORE_XCHARSTRUCT): Don't set member `valid_p'. |
| 169 | (XCharStructRow): New typedef. | 240 | (XCharStructRow): New typedef. |
| 170 | (XCHARSTRUCTROW_CHAR_VALID_P, XCHARSTRUCTROW_SET_CHAR_VALID): New | 241 | (XCHARSTRUCTROW_CHAR_VALID_P, XCHARSTRUCTROW_SET_CHAR_VALID): |
| 171 | macros. | 242 | New macros. |
| 172 | (struct MacFontStruct): Add member `bounds'. Remove member | 243 | (struct MacFontStruct): Add member `bounds'. Remove member |
| 173 | `per_char'. All uses for QuichDraw Text fonts are changed to | 244 | `per_char'. All uses for QuichDraw Text fonts are changed to |
| 174 | `bounds.per_char'. ATSUI font bounds are represented as an array | 245 | `bounds.per_char'. ATSUI font bounds are represented as an array |
| @@ -180,8 +251,8 @@ | |||
| 180 | (mac_query_char_extents): New function. | 251 | (mac_query_char_extents): New function. |
| 181 | (x_per_char_metric): Use it. | 252 | (x_per_char_metric): Use it. |
| 182 | (XLoadQueryFont): Likewise. Consolidate min/max_bounds calculations. | 253 | (XLoadQueryFont): Likewise. Consolidate min/max_bounds calculations. |
| 183 | [USE_CG_TEXT_DRAWING] (mac_draw_string_cg): Use | 254 | [USE_CG_TEXT_DRAWING] (mac_draw_string_cg): |
| 184 | mac_per_char_metric instead of x_per_char_metric. | 255 | Use mac_per_char_metric instead of x_per_char_metric. |
| 185 | (mac_text_extents_16): New function. | 256 | (mac_text_extents_16): New function. |
| 186 | (mac_compute_glyph_string_overhangs): Use it. | 257 | (mac_compute_glyph_string_overhangs): Use it. |
| 187 | (mac_unload_font): Free member `bounds' in struct MacFontStruct. | 258 | (mac_unload_font): Free member `bounds' in struct MacFontStruct. |
| @@ -435,11 +506,11 @@ | |||
| 435 | [MAC_OS8] (main): Call init_apple_event_handler instead of | 506 | [MAC_OS8] (main): Call init_apple_event_handler instead of |
| 436 | init_required_apple_events. | 507 | init_required_apple_events. |
| 437 | (mac_initialize) [MAC_OSX]: Likewise. | 508 | (mac_initialize) [MAC_OSX]: Likewise. |
| 438 | [!USE_CARBON_EVENTS] (mac_wait_next_event): Use | 509 | [!USE_CARBON_EVENTS] (mac_wait_next_event): |
| 439 | mac_ready_for_apple_events instead of Qmac_ready_for_drag_n_drop. | 510 | Use mac_ready_for_apple_events instead of Qmac_ready_for_drag_n_drop. |
| 440 | 511 | ||
| 441 | * macterm.h (mac_make_lispy_event_code, mac_aedesc_to_lisp): Add | 512 | * macterm.h (mac_make_lispy_event_code, mac_aedesc_to_lisp): |
| 442 | externs. | 513 | Add externs. |
| 443 | (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]: Likewise. | 514 | (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]: Likewise. |
| 444 | (Fmac_get_preference): Add EXFUN. | 515 | (Fmac_get_preference): Add EXFUN. |
| 445 | 516 | ||
| @@ -479,11 +550,9 @@ | |||
| 479 | 550 | ||
| 480 | 2005-12-06 Ken Raeburn <raeburn@gnu.org> | 551 | 2005-12-06 Ken Raeburn <raeburn@gnu.org> |
| 481 | 552 | ||
| 482 | * buffer.c (Fkill_buffer): Avoid dangerous side effects in NILP | 553 | * buffer.c (Fkill_buffer): Avoid dangerous side effects in NILP args. |
| 483 | argument. | ||
| 484 | * bytecode.c (Fbyte_code): Likewise. | 554 | * bytecode.c (Fbyte_code): Likewise. |
| 485 | * fileio.c (internal_delete_file, Fread_file_name_internal): | 555 | * fileio.c (internal_delete_file, Fread_file_name_internal): Likewise. |
| 486 | Likewise. | ||
| 487 | * minibuf.c (Fminibuffer_complete_and_exit): Likewise. | 556 | * minibuf.c (Fminibuffer_complete_and_exit): Likewise. |
| 488 | * undo.c (truncate_undo_list): Likewise. | 557 | * undo.c (truncate_undo_list): Likewise. |
| 489 | 558 | ||