aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog31
1 files changed, 18 insertions, 13 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5ce56f4df04..596ae25c649 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12014-12-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 Various fixes to use bool type and constants.
4 * dispnew.c (update_single_window): Remove arg `force_p' since it's
5 always true.
6 * xfaces.c (clear_face_cache): Use bool for the argument type.
7
12014-12-15 Paul Eggert <eggert@cs.ucla.edu> 82014-12-15 Paul Eggert <eggert@cs.ucla.edu>
2 9
3 Correct same_at_end when restoring window points 10 Correct same_at_end when restoring window points
@@ -10,14 +17,12 @@
10 17
11 New feature optionally to accelerate auto-repeated scrolling. 18 New feature optionally to accelerate auto-repeated scrolling.
12 19
13 * xdisp.c: Remove "static" from declaration of 20 * xdisp.c: Remove "static" from declaration of Qfontification_functions.
14 Qfontification_functions.
15 21
16 * window.c (window_scroll): bind fontification-functions to nil 22 * window.c (window_scroll): Bind fontification-functions to nil
17 when scrolling by whole screens and 23 when scrolling by whole screens and
18 fast-but-imprecise-scrolling is non-nil. 24 fast-but-imprecise-scrolling is non-nil.
19 (syms_of_window): New DEFVAR_BOOL 25 (syms_of_window): New DEFVAR_BOOL fast-but-imprecise-scrolling.
20 fast-but-imprecise-scrolling.
21 26
22 * lisp.h (bool): Declare Qfontification_functions extern. 27 * lisp.h (bool): Declare Qfontification_functions extern.
23 28
@@ -28,10 +33,10 @@
28 [GNUTLS >= 3.0.20]: Declare for WINDOWSNT. 33 [GNUTLS >= 3.0.20]: Declare for WINDOWSNT.
29 (init_gnutls_functions)(gnutls_certificate_set_x509_system_trust) 34 (init_gnutls_functions)(gnutls_certificate_set_x509_system_trust)
30 [GNUTLS >= 3.0.20]: Load from shared library for WINDOWSNT. 35 [GNUTLS >= 3.0.20]: Load from shared library for WINDOWSNT.
31 (fn_gnutls_certificate_set_x509_system_trust) [!WINDOWSNT]: Define 36 (fn_gnutls_certificate_set_x509_system_trust) [!WINDOWSNT]:
32 new macro. 37 Define new macro.
33 (Fgnutls_boot) [GNUTLS >= 3.0.20]: Call 38 (Fgnutls_boot) [GNUTLS >= 3.0.20]:
34 gnutls_certificate_set_x509_system_trust. Log an error message if 39 Call gnutls_certificate_set_x509_system_trust. Log an error message if
35 it fails. 40 it fails.
36 41
372014-12-13 Paul Eggert <eggert@cs.ucla.edu> 422014-12-13 Paul Eggert <eggert@cs.ucla.edu>
@@ -41,8 +46,8 @@
41 46
422014-12-13 Eli Zaretskii <eliz@gnu.org> 472014-12-13 Eli Zaretskii <eliz@gnu.org>
43 48
44 * gnutls.c (Fgnutls_available_p, syms_of_gnutls): Move 49 * gnutls.c (Fgnutls_available_p, syms_of_gnutls):
45 gnutls-available-p out of the HAVE_GNUTLS conditional, and define 50 Move gnutls-available-p out of the HAVE_GNUTLS conditional, and define
46 them only once. 51 them only once.
47 52
482014-12-13 Teodor Zlatanov <tzz@lifelogs.com> 532014-12-13 Teodor Zlatanov <tzz@lifelogs.com>
@@ -58,8 +63,8 @@
58 63
592014-12-13 Eli Zaretskii <eliz@gnu.org> 642014-12-13 Eli Zaretskii <eliz@gnu.org>
60 65
61 * xdisp.c (move_it_in_display_line_to, display_line): Don't 66 * xdisp.c (move_it_in_display_line_to, display_line):
62 disallow overflow-newline-into-fringe when word-wrap is in 67 Don't disallow overflow-newline-into-fringe when word-wrap is in
63 effect. (Bug#19300) 68 effect. (Bug#19300)
64 69
652014-12-11 Stefan Monnier <monnier@iro.umontreal.ca> 702014-12-11 Stefan Monnier <monnier@iro.umontreal.ca>