aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog12
-rw-r--r--src/buffer.c4
-rw-r--r--src/gnutls.c2
3 files changed, 15 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e8428abc926..8e72ddbf9c4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring.
4
52014-12-27 Eli Zaretskii <eliz@gnu.org>
6
7 * gnutls.c (gnutls_init): Fix deprecation warning from GCC.
8
92014-12-27 Eli Zaretskii <eliz@gnu.org>
10
12014-12-26 Paul Eggert <eggert@cs.ucla.edu> 112014-12-26 Paul Eggert <eggert@cs.ucla.edu>
2 12
3 Use bool for boolean in xselect.c, xsettings.c 13 Use bool for boolean in xselect.c, xsettings.c
@@ -918,6 +928,8 @@
918 * fileio.c (Fexpand_file_name): Use make_unibyte_string, not 928 * fileio.c (Fexpand_file_name): Use make_unibyte_string, not
919 build_string, when importing a home directory. (Bug#18873) 929 build_string, when importing a home directory. (Bug#18873)
920 930
9312014-12-27 Eli Zaretskii <eliz@gnu.org>
932
921 * dispnew.c (buffer_posn_from_coords): 933 * dispnew.c (buffer_posn_from_coords):
922 Use WINDOW_WANTS_HEADER_LINE_P, not WINDOW_WANTS_MODELINE_P, to 934 Use WINDOW_WANTS_HEADER_LINE_P, not WINDOW_WANTS_MODELINE_P, to
923 account for the header-line height. (Bug#18839) 935 account for the header-line height. (Bug#18839)
diff --git a/src/buffer.c b/src/buffer.c
index b57d968e73a..9a5c4a8824f 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -6066,9 +6066,9 @@ from happening repeatedly and making Emacs nonfunctional. */);
6066 doc: /* List of functions to call after each text change. 6066 doc: /* List of functions to call after each text change.
6067Three arguments are passed to each function: the positions of 6067Three arguments are passed to each function: the positions of
6068the beginning and end of the range of changed text, 6068the beginning and end of the range of changed text,
6069and the length in bytes of the pre-change text replaced by that range. 6069and the length in chars of the pre-change text replaced by that range.
6070\(For an insertion, the pre-change length is zero; 6070\(For an insertion, the pre-change length is zero;
6071for a deletion, that length is the number of bytes deleted, 6071for a deletion, that length is the number of chars deleted,
6072and the post-change beginning and end are at the same place.) 6072and the post-change beginning and end are at the same place.)
6073 6073
6074Buffer changes made while executing the `after-change-functions' 6074Buffer changes made while executing the `after-change-functions'
diff --git a/src/gnutls.c b/src/gnutls.c
index bf9f1323546..14205ca0d3a 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -134,7 +134,7 @@ DEF_GNUTLS_FN (void, gnutls_global_set_mem_functions,
134 gnutls_is_secure_function, gnutls_realloc_function, 134 gnutls_is_secure_function, gnutls_realloc_function,
135 gnutls_free_function)); 135 gnutls_free_function));
136DEF_GNUTLS_FN (int, gnutls_handshake, (gnutls_session_t)); 136DEF_GNUTLS_FN (int, gnutls_handshake, (gnutls_session_t));
137DEF_GNUTLS_FN (int, gnutls_init, (gnutls_session_t *, gnutls_connection_end_t)); 137DEF_GNUTLS_FN (int, gnutls_init, (gnutls_session_t *, unsigned int));
138DEF_GNUTLS_FN (int, gnutls_priority_set_direct, 138DEF_GNUTLS_FN (int, gnutls_priority_set_direct,
139 (gnutls_session_t, const char *, const char **)); 139 (gnutls_session_t, const char *, const char **));
140DEF_GNUTLS_FN (size_t, gnutls_record_check_pending, (gnutls_session_t)); 140DEF_GNUTLS_FN (size_t, gnutls_record_check_pending, (gnutls_session_t));