mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-08 20:58:58 +00:00
Minor fixes for comments.
src/buffer.c (overlay_strings): Fix the wording of the commentary. lisp/mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
This commit is contained in:
parent
e6cf6ca050
commit
74a9022aba
@ -1,3 +1,7 @@
|
|||||||
|
2014-05-03 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
|
||||||
|
|
||||||
2014-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
2014-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
|
* vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
|
||||||
|
@ -473,8 +473,8 @@ message."
|
|||||||
(widen)
|
(widen)
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(while (>= total msgnum)
|
(while (>= total msgnum)
|
||||||
;; Go back to the Rmail buffer so
|
;; Go back to the Rmail buffer so FUNCTION and
|
||||||
;; so FUNCTION and rmail-get-summary can see its local vars.
|
;; rmail-get-summary can see its local vars.
|
||||||
(with-current-buffer main-buffer
|
(with-current-buffer main-buffer
|
||||||
;; First test whether to include this message.
|
;; First test whether to include this message.
|
||||||
(if (or (null function)
|
(if (or (null function)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2014-05-03 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* buffer.c (overlay_strings): Fix the wording of the commentary.
|
||||||
|
|
||||||
2014-05-02 Paul Eggert <eggert@cs.ucla.edu>
|
2014-05-02 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
Consult libpng-config more consistently (Bug#17339).
|
Consult libpng-config more consistently (Bug#17339).
|
||||||
|
21
src/buffer.c
21
src/buffer.c
@ -3333,17 +3333,18 @@ record_overlay_string (struct sortstrlist *ssl, Lisp_Object str,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return the concatenation of the strings associated with overlays that
|
/* Concatenate the strings associated with overlays that begin or end
|
||||||
begin or end at POS, ignoring overlays that are specific to a window
|
at POS, ignoring overlays that are specific to windows other than W.
|
||||||
other than W. The strings are concatenated in the appropriate order:
|
The strings are concatenated in the appropriate order: shorter
|
||||||
shorter overlays nest inside longer ones, and higher priority inside
|
overlays nest inside longer ones, and higher priority inside lower.
|
||||||
lower. Normally all of the after-strings come first, but zero-sized
|
Normally all of the after-strings come first, but zero-sized
|
||||||
overlays have their after-strings ride along with the before-strings
|
overlays have their after-strings ride along with the
|
||||||
because it would look strange to print them inside-out.
|
before-strings because it would look strange to print them
|
||||||
|
inside-out.
|
||||||
|
|
||||||
Returns the string length, and stores the contents indirectly through
|
Returns the concatenated string's length, and return the pointer to
|
||||||
PSTR, if that variable is non-null. The string may be overwritten by
|
that string via PSTR, if that variable is non-NULL. The storage of
|
||||||
subsequent calls. */
|
the concatenated strings may be overwritten by subsequent calls. */
|
||||||
|
|
||||||
ptrdiff_t
|
ptrdiff_t
|
||||||
overlay_strings (ptrdiff_t pos, struct window *w, unsigned char **pstr)
|
overlay_strings (ptrdiff_t pos, struct window *w, unsigned char **pstr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user