aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2014-12-15 15:09:04 -0500
committerStefan Monnier2014-12-15 15:09:04 -0500
commitfb420e7789b4f9a0481ee44dbdf37d3de6578ad3 (patch)
treeb4858f3b4a55d9acd2b886e1decfb7f049b6fd0b /src
parent061db139896a6eabebef5bfe199744b6151493f3 (diff)
downloademacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.tar.gz
emacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.zip
* lisp/subr.el (sit-for): Tweak docstring.
Fixes: debbugs:19381 * src/buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring. * build-aux/git-hooks/commit-msg (at_sign): Bump up line-length limit to 78.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog20
-rw-r--r--src/buffer.c4
2 files changed, 14 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6b7abe46eea..c0b9039c339 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,11 +1,15 @@
12014-12-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring.
4
12014-12-13 Eli Zaretskii <eliz@gnu.org> 52014-12-13 Eli Zaretskii <eliz@gnu.org>
2 6
3 * gnutls.c (gnutls_init): Fix deprecation warning from GCC. 7 * gnutls.c (gnutls_init): Fix deprecation warning from GCC.
4 8
52014-12-12 Eli Zaretskii <eliz@gnu.org> 92014-12-12 Eli Zaretskii <eliz@gnu.org>
6 10
7 * gnutls.c (Fgnutls_available_p, syms_of_gnutls): Move 11 * gnutls.c (Fgnutls_available_p, syms_of_gnutls):
8 gnutls-available-p out of the HAVE_GNUTLS conditional, and define 12 Move gnutls-available-p out of the HAVE_GNUTLS conditional, and define
9 them only once. 13 them only once.
10 14
112014-12-11 Teodor Zlatanov <tzz@lifelogs.com> 152014-12-11 Teodor Zlatanov <tzz@lifelogs.com>
@@ -21,8 +25,8 @@
21 25
222014-12-10 Eli Zaretskii <eliz@gnu.org> 262014-12-10 Eli Zaretskii <eliz@gnu.org>
23 27
24 * xdisp.c (move_it_in_display_line_to, display_line): Don't 28 * xdisp.c (move_it_in_display_line_to, display_line):
25 disallow overflow-newline-into-fringe when word-wrap is in 29 Don't disallow overflow-newline-into-fringe when word-wrap is in
26 effect. (Bug#19300) 30 effect. (Bug#19300)
27 31
282014-12-04 Lee Duhem <lee.duhem@gmail.com> (tiny change) 322014-12-04 Lee Duhem <lee.duhem@gmail.com> (tiny change)
@@ -78,8 +82,8 @@
782014-11-15 Eli Zaretskii <eliz@gnu.org> 822014-11-15 Eli Zaretskii <eliz@gnu.org>
79 83
80 * window.c (window_scroll_pixel_based): Avoid truncation/rounding 84 * window.c (window_scroll_pixel_based): Avoid truncation/rounding
81 errors in computing the number of pixels to scroll. Suggested by 85 errors in computing the number of pixels to scroll.
82 Kelly Dean <kelly@prtime.org>. (Bug#19060) 86 Suggested by Kelly Dean <kelly@prtime.org>. (Bug#19060)
83 87
842014-11-15 Jan Djärv <jan.h.d@swipnet.se> 882014-11-15 Jan Djärv <jan.h.d@swipnet.se>
85 89
@@ -190,8 +194,8 @@
190 194
1912014-10-26 Eli Zaretskii <eliz@gnu.org> 1952014-10-26 Eli Zaretskii <eliz@gnu.org>
192 196
193 * dispnew.c (buffer_posn_from_coords): Use 197 * dispnew.c (buffer_posn_from_coords):
194 WINDOW_WANTS_HEADER_LINE_P, not WINDOW_WANTS_MODELINE_P, to 198 Use WINDOW_WANTS_HEADER_LINE_P, not WINDOW_WANTS_MODELINE_P, to
195 account for the header-line height. (Bug#18839) 199 account for the header-line height. (Bug#18839)
196 200
1972014-10-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 2012014-10-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
diff --git a/src/buffer.c b/src/buffer.c
index 495f937d83f..368d273d7cd 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -6092,9 +6092,9 @@ from happening repeatedly and making Emacs nonfunctional. */);
6092 doc: /* List of functions to call after each text change. 6092 doc: /* List of functions to call after each text change.
6093Three arguments are passed to each function: the positions of 6093Three arguments are passed to each function: the positions of
6094the beginning and end of the range of changed text, 6094the beginning and end of the range of changed text,
6095and the length in bytes of the pre-change text replaced by that range. 6095and the length in chars of the pre-change text replaced by that range.
6096\(For an insertion, the pre-change length is zero; 6096\(For an insertion, the pre-change length is zero;
6097for a deletion, that length is the number of bytes deleted, 6097for a deletion, that length is the number of chars deleted,
6098and the post-change beginning and end are at the same place.) 6098and the post-change beginning and end are at the same place.)
6099 6099
6100Buffer changes made while executing the `after-change-functions' 6100Buffer changes made while executing the `after-change-functions'