aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a8b9c3bf1c6..b137045f216 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,63 @@
12015-01-25 Paul Eggert <eggert@cs.ucla.edu>
2
3 Count MANY function args more reliably
4 * alloc.c (Fgc_status, purecopy, unbind_to, garbage_collect_1):
5 * buffer.c (Fbuffer_list, Fkill_buffer):
6 * callint.c (read_file_name, Fcall_interactively):
7 * charset.c (Fset_charset_priority, syms_of_charset):
8 * chartab.c (uniprop_encode_value_numeric):
9 * coding.c (syms_of_coding):
10 * composite.c (syms_of_composite):
11 * data.c (wrong_range):
12 * dbusbind.c (syms_of_dbusbind):
13 * dired.c (file_attributes):
14 * editfns.c (Fdecode_time, update_buffer_properties, format2):
15 * eval.c (run_hook_with_args_2, apply1, call1, call2, call3)
16 (call4, call5, call6, call7):
17 * fileio.c (Finsert_file_contents, choose_write_coding_system)
18 (Fcar_less_than_car, build_annotations, auto_save_error):
19 * filelock.c (get_boot_time):
20 * fns.c (internal_equal, nconc2, Fyes_or_no_p, Fwidget_apply):
21 (maybe_resize_hash_table, secure_hash):
22 * font.c (font_style_to_value, font_open_by_name, Flist_fonts):
23 * fontset.c (fontset_add, Fset_fontset_font):
24 * ftfont.c (ftfont_lookup_cache):
25 * gtkutil.c (xg_get_font):
26 * insdel.c (signal_before_change, signal_after_change):
27 * keymap.c (append_key):
28 * lread.c (load_warn_old_style_backquotes, Fload, init_lread):
29 * minibuf.c (Fread_buffer):
30 * print.c (print_preprocess):
31 * process.c (Fformat_network_address, Fmake_network_process)
32 (server_accept_connection):
33 * sound.c (Fplay_sound_internal):
34 * term.c (Fsuspend_tty, Fresume_tty):
35 * window.c (window_list):
36 * xdisp.c (run_redisplay_end_trigger_hook, add_to_log)
37 (message_with_string):
38 * xfaces.c (Fx_list_fonts):
39 * xfont.c (syms_of_xfont):
40 * xselect.c (x_handle_selection_request)
41 (x_handle_selection_clear, x_clear_frame_selections)
42 (x_clipboard_manager_error_1):
43 Prefer CALLMANY and CALLN to counting args by hand.
44 * doc.c (reread_doc_file): Remove unused code.
45 * fns.c (concat2, concat3): Redo to avoid need for local-var vector.
46 (cmpfn_user_defined, hashfn_user_defined, Fmaphash):
47 Prefer call1 and call2 to Ffuncall.
48 * keyboard.c (safe_run_hook_funcall, safe_run_hooks):
49 Use struct literal rather than a local var, for simplicity.
50 * keymap.c (where_is_internal): Use NULL rather than a pointer
51 to unused args.
52 * lisp.h (CALLMANY, CALLN): New macros.
53 * sound.c (Fplay_sound_internal): Coalesce duplicate code.
54 Fixes: bug#19634
55
56 Use gnustep-config if available
57 * emacs.c [NS_IMPL_GNUSTEP]: Don't include <GNUstepBase/GSConfig.h>.
58 It doesn't appear to be needed, and the inclusion breaks on
59 Ubuntu 14.10 when 'configure' uses 'gnustep-config'.
60
12015-01-22 Eli Zaretskii <eliz@gnu.org> 612015-01-22 Eli Zaretskii <eliz@gnu.org>
2 62
3 * xdisp.c (init_iterator): Restore a comment lost in transition. 63 * xdisp.c (init_iterator): Restore a comment lost in transition.