mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-01 11:14:55 +00:00
(Fdefine_fringe_bitmap): Fix typo in docstring.
This commit is contained in:
parent
7690c76af0
commit
bffe8c261b
16
src/fringe.c
16
src/fringe.c
@ -737,7 +737,7 @@ update_window_fringes (w, force_p)
|
||||
{
|
||||
unsigned indicate_bob_p, indicate_top_line_p;
|
||||
unsigned indicate_eob_p, indicate_bottom_line_p;
|
||||
|
||||
|
||||
row = w->desired_matrix->rows + rn;
|
||||
if (!row->enabled_p)
|
||||
row = w->current_matrix->rows + rn;
|
||||
@ -746,7 +746,7 @@ update_window_fringes (w, force_p)
|
||||
indicate_top_line_p = row->indicate_top_line_p;
|
||||
indicate_eob_p = row->indicate_eob_p;
|
||||
indicate_bottom_line_p = row->indicate_bottom_line_p;
|
||||
|
||||
|
||||
row->indicate_bob_p = row->indicate_top_line_p = 0;
|
||||
row->indicate_eob_p = row->indicate_bottom_line_p = 0;
|
||||
|
||||
@ -881,7 +881,7 @@ update_window_fringes (w, force_p)
|
||||
}
|
||||
|
||||
|
||||
/* Compute actual fringe widths for frame F.
|
||||
/* Compute actual fringe widths for frame F.
|
||||
|
||||
If REDRAW is 1, redraw F if the fringe settings was actually
|
||||
modified and F is visible.
|
||||
@ -1096,7 +1096,7 @@ DEFUN ("define-fringe-bitmap", Fdefine_fringe_bitmap, Sdefine_fringe_bitmap,
|
||||
BITS is either a string or a vector of integers.
|
||||
HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS.
|
||||
WIDTH must be an integer between 1 and 16, or nil which defaults to 8.
|
||||
Optional forth arg ALIGN may be one of `top', `center', or `bottom',
|
||||
Optional fourth arg ALIGN may be one of `top', `center', or `bottom',
|
||||
indicating the positioning of the bitmap relative to the rows where it
|
||||
is used; the default is to center the bitmap. Fourth arg may also be a
|
||||
list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap
|
||||
@ -1130,7 +1130,7 @@ Return new bitmap number, or nil of no more free bitmap slots. */)
|
||||
fill2 = fb.height - h - fill1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (NILP (width))
|
||||
fb.width = 8;
|
||||
else
|
||||
@ -1217,7 +1217,7 @@ Return new bitmap number, or nil of no more free bitmap slots. */)
|
||||
|
||||
DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face, Sset_fringe_bitmap_face,
|
||||
1, 2, 0,
|
||||
doc: /* Set face for fringe bitmap FRINGE-ID to FACE.
|
||||
doc: /* Set face for fringe bitmap FRINGE-ID to FACE.
|
||||
If FACE is nil, reset face to default fringe face. */)
|
||||
(fringe_id, face)
|
||||
Lisp_Object fringe_id, face;
|
||||
@ -1244,7 +1244,7 @@ If FACE is nil, reset face to default fringe face. */)
|
||||
|
||||
DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos, Sfringe_bitmaps_at_pos,
|
||||
0, 2, 0,
|
||||
doc: /* Return fringe bitmaps of row containing position POS in window WINDOW.
|
||||
doc: /* Return fringe bitmaps of row containing position POS in window WINDOW.
|
||||
If WINDOW is nil, use selected window. If POS is nil, use value of point
|
||||
in that window. Return value is a cons (LEFT . RIGHT) where LEFT and RIGHT
|
||||
are the fringe bitmap numbers for the bitmaps in the left and right fringe,
|
||||
@ -1346,7 +1346,7 @@ w32_reset_fringes ()
|
||||
{
|
||||
/* Destroy row bitmaps. */
|
||||
int bt;
|
||||
|
||||
|
||||
for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++)
|
||||
rif->destroy_fringe_bitmap (bt);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user