diff options
| author | Kenichi Handa | 2010-07-12 11:28:50 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-07-12 11:28:50 +0900 |
| commit | 2300368463c9719839a0289cd6dccaa93d3274cf (patch) | |
| tree | d3e5e3b91444fb135bdedf40d0b4f597d47b40de /src/ChangeLog | |
| parent | 892dd5657e548f66bbcfb07a9556cc5fc9f17b8d (diff) | |
| parent | f479ef6e6f5c77ba0f1f6b60c1146f324d604e92 (diff) | |
| download | emacs-2300368463c9719839a0289cd6dccaa93d3274cf.tar.gz emacs-2300368463c9719839a0289cd6dccaa93d3274cf.zip | |
merge trunk
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 198 |
1 files changed, 197 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1cd57516c45..5acf42608e4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -11,6 +11,130 @@ | |||
| 11 | return value changed. | 11 | return value changed. |
| 12 | (syms_of_font): Adjusted for the above change. | 12 | (syms_of_font): Adjusted for the above change. |
| 13 | 13 | ||
| 14 | 2010-07-11 Andreas Schwab <schwab@linux-m68k.org> | ||
| 15 | |||
| 16 | * blockinput.h: Remove obsolete comment. | ||
| 17 | |||
| 18 | * lisp.h: Include <stddef.h>. | ||
| 19 | (OFFSETOF): Don't define. | ||
| 20 | (VECSIZE): Use offsetof instead of OFFSETOF. | ||
| 21 | (PSEUDOVECSIZE): Likewise. | ||
| 22 | * process.c (conv_sockaddr_to_lisp): Likewise. | ||
| 23 | * alloc.c: Don't include <stddef.h>. | ||
| 24 | * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof. | ||
| 25 | |||
| 26 | * process.c: Remove obsolete comment. | ||
| 27 | |||
| 28 | 2010-07-11 Chong Yidong <cyd@stupidchicken.com> | ||
| 29 | |||
| 30 | * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091). | ||
| 31 | |||
| 32 | 2010-07-11 Andreas Schwab <schwab@linux-m68k.org> | ||
| 33 | |||
| 34 | * callint.c (Fcall_interactively): Use strchr, strrchr instead of | ||
| 35 | index, rindex. | ||
| 36 | * doc.c (get_doc_string, Fsnarf_documentation): Likewise. | ||
| 37 | * editfns.c (Fuser_full_name, Fformat): Likewise. | ||
| 38 | * emacs.c (argmatch, sort_args, decode_env_path): Likewise. | ||
| 39 | * fileio.c (Ffile_symlink_p): Likewise. | ||
| 40 | * filelock.c (current_lock_owner): Likewise. | ||
| 41 | * font.c (font_parse_name, font_parse_family_registry): Likewise. | ||
| 42 | * fontset.c (fontset_pattern_regexp): Likewise. | ||
| 43 | * lread.c (read1): Likewise. | ||
| 44 | * sysdep.c (init_system_name): Likewise. | ||
| 45 | * xfns.c (select_visual): Likewise. | ||
| 46 | * s/hpux10-20.h (index, rindex): Don't define. | ||
| 47 | * s/ms-w32.h (index): Likewise. | ||
| 48 | * s/usg5-4.h: Likewise. | ||
| 49 | |||
| 50 | * callproc.c (relocate_fd): Use F_DUPFD if defined. | ||
| 51 | |||
| 52 | * alloc.c (pending_malloc_warning, malloc_warning): Add const. | ||
| 53 | * callproc.c (relocate_fd, getenv_internal_1, getenv_internal) | ||
| 54 | (egetenv): Likewise. | ||
| 55 | * doprnt.c (doprnt): Likewise. | ||
| 56 | * editfns.c (set_time_zone_rule, format2): Likewise. | ||
| 57 | * emacs.c (decode_env_path): Likewise. | ||
| 58 | * eval.c (signal_error, error): Likewise. | ||
| 59 | * insdel.c (replace_range_2): Likewise. | ||
| 60 | * keyboard.c (cmd_error_internal): Likewise. | ||
| 61 | * lread.c (isfloat_string, make_symbol, dir_warning): Likewise. | ||
| 62 | * print.c (write_string, write_string_1, print_error_message): | ||
| 63 | Likewise. | ||
| 64 | * vm-limit.c (warn_function, memory_warnings): Likewise. | ||
| 65 | * xdisp.c (message1, message1_nolog, message_with_string) | ||
| 66 | (vmessage, message, message_nolog): Likewise. | ||
| 67 | * emacs.c: Remove duplicate declaration. | ||
| 68 | * keyboard.h: Likewise. | ||
| 69 | * lisp.h: Update prototypes. | ||
| 70 | |||
| 71 | * eval.c: Fix indentation problem. | ||
| 72 | |||
| 73 | * keyboard.c: Include "process.h" | ||
| 74 | |||
| 75 | * eval.c: Remove obsolete noinline declaration. | ||
| 76 | * fns.c: Likewise. | ||
| 77 | |||
| 78 | 2010-07-11 Ken Raeburn <raeburn@raeburn.org> | ||
| 79 | |||
| 80 | * doprnt.c (doprnt): Take a va_list argument instead of count and | ||
| 81 | pointer. | ||
| 82 | * eval.c (error): Change to a standard-C variadic function. | ||
| 83 | * xdisp.c (vmessage): Renamed from message, made static, and | ||
| 84 | changed to take a va_list argument. | ||
| 85 | (message): New variadic wrapper. | ||
| 86 | (message_nolog): Now a variadic function, calling vmessage. | ||
| 87 | * lisp.h: Include stdarg.h for va_list. | ||
| 88 | (doprnt, error, message, message_nolog): Decls updated. | ||
| 89 | |||
| 90 | 2010-07-11 Eli Zaretskii <eliz@gnu.org> | ||
| 91 | |||
| 92 | * process.c (syms_of_process) <delete-exited-processes>: Define | ||
| 93 | even if !subprocesses. | ||
| 94 | (delete_exited_processes): Ditto. | ||
| 95 | |||
| 96 | * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR. | ||
| 97 | (delete_exited_processes): Don't define. | ||
| 98 | |||
| 99 | 2010-07-10 Chong Yidong <cyd@stupidchicken.com> | ||
| 100 | |||
| 101 | * frame.c (make_frame): Initialize menu_bar_lines and | ||
| 102 | tool_bar_lines members. | ||
| 103 | (make_initial_frame, make_terminal_frame): Initialize | ||
| 104 | menu_bar_lines using value of menu-bar-mode. | ||
| 105 | |||
| 106 | * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines. | ||
| 107 | |||
| 108 | 2010-07-10 Eli Zaretskii <eliz@gnu.org> | ||
| 109 | |||
| 110 | * process.c: Reshuffle #include's. Condition some of the global | ||
| 111 | and static variables on `subprocesses'. | ||
| 112 | (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p): | ||
| 113 | Leave only one implementation. | ||
| 114 | (Fget_buffer_process, Fprocess_inherit_coding_system_flag) | ||
| 115 | (kill_buffer_processes, Flist_system_processes) | ||
| 116 | (Fprocess_attributes, init_process, syms_of_process): Unify the | ||
| 117 | implementations for with subprocesses and without them. | ||
| 118 | |||
| 119 | 2010-07-09 Jan Djärv <jan.h.d@swipnet.se> | ||
| 120 | |||
| 121 | * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the | ||
| 122 | correct size for Motif. | ||
| 123 | (free_frame_menubar): Call x_set_window_size to update frame size. | ||
| 124 | |||
| 125 | * xfns.c (x_window): Set borderWidth to 0 for pane and | ||
| 126 | EmacsFrame. Frame size calculation is wrong otherwise. | ||
| 127 | |||
| 128 | 2010-07-09 Michael Albinus <michael.albinus@gmx.de> | ||
| 129 | |||
| 130 | * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which | ||
| 131 | allows to suppress errors when polling in Emacs' main loop. | ||
| 132 | (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method) | ||
| 133 | (Fdbus_call_method_asynchronously, Fdbus_method_return_internal) | ||
| 134 | (Fdbus_method_error_internal, Fdbus_send_signal) | ||
| 135 | (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal) | ||
| 136 | (Fdbus_register_method): Use it. (Bug#6579) | ||
| 137 | |||
| 14 | 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu> | 138 | 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu> |
| 15 | 139 | ||
| 16 | * alloc.c: Convert DEFUNs to standard C. | 140 | * alloc.c: Convert DEFUNs to standard C. |
| @@ -785,7 +909,55 @@ | |||
| 785 | Improve documentation. Return font regardless of use_system_font. | 909 | Improve documentation. Return font regardless of use_system_font. |
| 786 | (syms_of_xsettings): Improve documentation for font-use-system-font. | 910 | (syms_of_xsettings): Improve documentation for font-use-system-font. |
| 787 | 911 | ||
| 788 | 2009-06-17 Naohiro Aota <naota@elisp.net> (tiny change) | 912 | 2010-07-10 Chong Yidong <cyd@stupidchicken.com> |
| 913 | |||
| 914 | * xfaces.c (realize_face): Garbage the frame if a face is removed | ||
| 915 | (Bug#6593). | ||
| 916 | |||
| 917 | 2010-07-05 Andreas Schwab <schwab@linux-m68k.org> | ||
| 918 | |||
| 919 | * keyboard.c: Remove duplicate <setjmp.h>. | ||
| 920 | (read_key_sequence): Remove volatile qualifiers. | ||
| 921 | |||
| 922 | 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 923 | |||
| 924 | * dispextern.h (FRINGE_HEIGHT_BITS): New define. | ||
| 925 | (struct glyph_row): New members left_fringe_offset and | ||
| 926 | right_fringe_offset. | ||
| 927 | |||
| 928 | * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap | ||
| 929 | specially. | ||
| 930 | * w32term.c (w32_draw_fringe_bitmap): Likewise. | ||
| 931 | * nsterm.m (ns_draw_fringe_bitmap): Likewise. | ||
| 932 | |||
| 933 | * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here. | ||
| 934 | Take account of bitmap offset. | ||
| 935 | (draw_window_fringes): Take account of window vscroll. | ||
| 936 | (update_window_fringes): Likewise. Extend top-aligned top indicator | ||
| 937 | or bottom-aligned bottom indicator to adjacent rows if it doesn't fit | ||
| 938 | in one row. Don't set redraw_fringe_bitmaps_p outside row comparison. | ||
| 939 | Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325). | ||
| 940 | |||
| 941 | 2010-07-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 942 | |||
| 943 | * w32fns.c (Qtooltip): Declare. | ||
| 944 | Suggested by Andy Moreton <andrewjmoreton@gmail.com>. | ||
| 945 | |||
| 946 | 2010-07-03 Jan Djärv <jan.h.d@swipnet.se> | ||
| 947 | |||
| 948 | * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid | ||
| 949 | grab on just Press (Bug#6499). | ||
| 950 | |||
| 951 | 2010-07-02 Chong Yidong <cyd@stupidchicken.com> | ||
| 952 | |||
| 953 | * frame.c (Qtooltip): New var. | ||
| 954 | (delete_frame): Use it. Fix faulty if statement. Don't update | ||
| 955 | mode line for tooltip frames. Suggested by Martin Rudalics. | ||
| 956 | |||
| 957 | * xfns.c (x_create_tip_frame): | ||
| 958 | * w32fns.c (x_create_tip_frame): Use it. | ||
| 959 | |||
| 960 | 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change) | ||
| 789 | 961 | ||
| 790 | * xftfont.c (xftfont_open): Check font width one by one also when | 962 | * xftfont.c (xftfont_open): Check font width one by one also when |
| 791 | spacing is dual. | 963 | spacing is dual. |
| @@ -964,6 +1136,30 @@ | |||
| 964 | 1136 | ||
| 965 | * m/ibms390x.h: Rather than duplicating ibms390.h, just include it. | 1137 | * m/ibms390x.h: Rather than duplicating ibms390.h, just include it. |
| 966 | 1138 | ||
| 1139 | 2010-06-26 Andreas Schwab <schwab@linux-m68k.org> | ||
| 1140 | |||
| 1141 | * alloc.c (Fmake_byte_code): Don't access undefined argument | ||
| 1142 | (Bug#6517). | ||
| 1143 | |||
| 1144 | 2010-06-25 Chong Yidong <cyd@stupidchicken.com> | ||
| 1145 | |||
| 1146 | * xdisp.c (next_element_from_image): Ensure that after-strings are | ||
| 1147 | read the next time we hit handle_stop (Bug#1336). | ||
| 1148 | |||
| 1149 | 2010-06-23 Andreas Schwab <schwab@linux-m68k.org> | ||
| 1150 | |||
| 1151 | * lread.c (read1): Signal error if #s is not followed by paren. | ||
| 1152 | |||
| 1153 | 2010-06-19 Chong Yidong <cyd@stupidchicken.com> | ||
| 1154 | |||
| 1155 | * image.c (free_image): Mark frame as garbaged (Bug#6426). | ||
| 1156 | |||
| 1157 | * keymap.c (Fdefine_key): Doc fix (Bug#6460). | ||
| 1158 | |||
| 1159 | 2010-06-15 Glenn Morris <rgm@gnu.org> | ||
| 1160 | |||
| 1161 | * editfns.c (Fbyte_to_string): Pacify compiler. | ||
| 1162 | |||
| 967 | 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca> | 1163 | 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 968 | 1164 | ||
| 969 | * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string. | 1165 | * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string. |