diff options
| author | Paul Eggert | 2012-09-05 00:18:46 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-05 00:18:46 -0700 |
| commit | f75d7a913dd0fae7a739d12f704fca024c065c3e (patch) | |
| tree | 5f7d36acdd831dcc0f377f39866bb33804ce741a /src/ChangeLog | |
| parent | 7e570fbf3ef8ccd31df2651f5d2775c5697d5950 (diff) | |
| download | emacs-f75d7a913dd0fae7a739d12f704fca024c065c3e.tar.gz emacs-f75d7a913dd0fae7a739d12f704fca024c065c3e.zip | |
* fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
* fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
(Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
(file_name_absolute_p, Fsubstitute_in_file_name):
(check_executable, check_writable, Ffile_accessible_directory_p)
(Fset_file_selinux_context, Fdefault_file_modes)
(Finsert_file_contents, choose_write_coding_system)
(Fwrite_region, build_annotations, a_write, e_write)
(Fdo_auto_save):
* filelock.c (boot_time_initialized, get_boot_time)
(get_boot_time_1, lock_file_1, within_one_second):
* floatfns.c (in_float):
* fns.c (concat, internal_equal, Frequire, base64_encode_1)
(base64_decode_1, cmpfn_eql, cmpfn_user_defined)
(sweep_weak_table, sweep_weak_hash_tables, secure_hash):
* lisp.h (struct Lisp_Hash_Table.cmpfn):
* window.c (compare_window_configurations):
Use bool for booleans.
* fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
(Fdefault_file_modes): Now mode_t, not int, for modes.
(Fdo_auto_save): Set a boolean to 1 rather than using ++.
(internal_delete_file): Now returns void, not a (boolean) int,
since nobody was looking at the return value.
* lisp.h, window.h: Adjust to above API changes.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5ff49aadd87..cb4f1071c70 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,30 @@ | |||
| 1 | 2012-09-05 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-09-05 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean. | ||
| 4 | * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name) | ||
| 5 | (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file) | ||
| 6 | (file_name_absolute_p, Fsubstitute_in_file_name): | ||
| 7 | (check_executable, check_writable, Ffile_accessible_directory_p) | ||
| 8 | (Fset_file_selinux_context, Fdefault_file_modes) | ||
| 9 | (Finsert_file_contents, choose_write_coding_system) | ||
| 10 | (Fwrite_region, build_annotations, a_write, e_write) | ||
| 11 | (Fdo_auto_save): | ||
| 12 | * filelock.c (boot_time_initialized, get_boot_time) | ||
| 13 | (get_boot_time_1, lock_file_1, within_one_second): | ||
| 14 | * floatfns.c (in_float): | ||
| 15 | * fns.c (concat, internal_equal, Frequire, base64_encode_1) | ||
| 16 | (base64_decode_1, cmpfn_eql, cmpfn_user_defined) | ||
| 17 | (sweep_weak_table, sweep_weak_hash_tables, secure_hash): | ||
| 18 | * lisp.h (struct Lisp_Hash_Table.cmpfn): | ||
| 19 | * window.c (compare_window_configurations): | ||
| 20 | Use bool for booleans. | ||
| 21 | * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits) | ||
| 22 | (Fdefault_file_modes): Now mode_t, not int, for modes. | ||
| 23 | (Fdo_auto_save): Set a boolean to 1 rather than using ++. | ||
| 24 | (internal_delete_file): Now returns void, not a (boolean) int, | ||
| 25 | since nobody was looking at the return value. | ||
| 26 | * lisp.h, window.h: Adjust to above API changes. | ||
| 27 | |||
| 3 | * xdisp.c (set_message): Simplify and reindent last change. | 28 | * xdisp.c (set_message): Simplify and reindent last change. |
| 4 | 29 | ||
| 5 | 2012-09-05 Juanma Barranquero <lekktu@gmail.com> | 30 | 2012-09-05 Juanma Barranquero <lekktu@gmail.com> |