diff options
| author | Juanma Barranquero | 2004-03-01 18:46:48 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-03-01 18:46:48 +0000 |
| commit | bffe8c261b1157646ebe337644015472c1f611a5 (patch) | |
| tree | 29a7b3b9144eb2467520762dc6be8b0b455f7019 /src | |
| parent | 7690c76af06a287856c9edf4cb76d9409e1c9b64 (diff) | |
| download | emacs-bffe8c261b1157646ebe337644015472c1f611a5.tar.gz emacs-bffe8c261b1157646ebe337644015472c1f611a5.zip | |
(Fdefine_fringe_bitmap): Fix typo in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fringe.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fringe.c b/src/fringe.c index ba4fbfdc7e0..cf13544bb1e 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -737,7 +737,7 @@ update_window_fringes (w, force_p) | |||
| 737 | { | 737 | { |
| 738 | unsigned indicate_bob_p, indicate_top_line_p; | 738 | unsigned indicate_bob_p, indicate_top_line_p; |
| 739 | unsigned indicate_eob_p, indicate_bottom_line_p; | 739 | unsigned indicate_eob_p, indicate_bottom_line_p; |
| 740 | 740 | ||
| 741 | row = w->desired_matrix->rows + rn; | 741 | row = w->desired_matrix->rows + rn; |
| 742 | if (!row->enabled_p) | 742 | if (!row->enabled_p) |
| 743 | row = w->current_matrix->rows + rn; | 743 | row = w->current_matrix->rows + rn; |
| @@ -746,7 +746,7 @@ update_window_fringes (w, force_p) | |||
| 746 | indicate_top_line_p = row->indicate_top_line_p; | 746 | indicate_top_line_p = row->indicate_top_line_p; |
| 747 | indicate_eob_p = row->indicate_eob_p; | 747 | indicate_eob_p = row->indicate_eob_p; |
| 748 | indicate_bottom_line_p = row->indicate_bottom_line_p; | 748 | indicate_bottom_line_p = row->indicate_bottom_line_p; |
| 749 | 749 | ||
| 750 | row->indicate_bob_p = row->indicate_top_line_p = 0; | 750 | row->indicate_bob_p = row->indicate_top_line_p = 0; |
| 751 | row->indicate_eob_p = row->indicate_bottom_line_p = 0; | 751 | row->indicate_eob_p = row->indicate_bottom_line_p = 0; |
| 752 | 752 | ||
| @@ -881,7 +881,7 @@ update_window_fringes (w, force_p) | |||
| 881 | } | 881 | } |
| 882 | 882 | ||
| 883 | 883 | ||
| 884 | /* Compute actual fringe widths for frame F. | 884 | /* Compute actual fringe widths for frame F. |
| 885 | 885 | ||
| 886 | If REDRAW is 1, redraw F if the fringe settings was actually | 886 | If REDRAW is 1, redraw F if the fringe settings was actually |
| 887 | modified and F is visible. | 887 | modified and F is visible. |
| @@ -1096,7 +1096,7 @@ DEFUN ("define-fringe-bitmap", Fdefine_fringe_bitmap, Sdefine_fringe_bitmap, | |||
| 1096 | BITS is either a string or a vector of integers. | 1096 | BITS is either a string or a vector of integers. |
| 1097 | HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS. | 1097 | HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS. |
| 1098 | WIDTH must be an integer between 1 and 16, or nil which defaults to 8. | 1098 | WIDTH must be an integer between 1 and 16, or nil which defaults to 8. |
| 1099 | Optional forth arg ALIGN may be one of `top', `center', or `bottom', | 1099 | Optional fourth arg ALIGN may be one of `top', `center', or `bottom', |
| 1100 | indicating the positioning of the bitmap relative to the rows where it | 1100 | indicating the positioning of the bitmap relative to the rows where it |
| 1101 | is used; the default is to center the bitmap. Fourth arg may also be a | 1101 | is used; the default is to center the bitmap. Fourth arg may also be a |
| 1102 | list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap | 1102 | 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. */) | |||
| 1130 | fill2 = fb.height - h - fill1; | 1130 | fill2 = fb.height - h - fill1; |
| 1131 | } | 1131 | } |
| 1132 | } | 1132 | } |
| 1133 | 1133 | ||
| 1134 | if (NILP (width)) | 1134 | if (NILP (width)) |
| 1135 | fb.width = 8; | 1135 | fb.width = 8; |
| 1136 | else | 1136 | else |
| @@ -1217,7 +1217,7 @@ Return new bitmap number, or nil of no more free bitmap slots. */) | |||
| 1217 | 1217 | ||
| 1218 | DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face, Sset_fringe_bitmap_face, | 1218 | DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face, Sset_fringe_bitmap_face, |
| 1219 | 1, 2, 0, | 1219 | 1, 2, 0, |
| 1220 | doc: /* Set face for fringe bitmap FRINGE-ID to FACE. | 1220 | doc: /* Set face for fringe bitmap FRINGE-ID to FACE. |
| 1221 | If FACE is nil, reset face to default fringe face. */) | 1221 | If FACE is nil, reset face to default fringe face. */) |
| 1222 | (fringe_id, face) | 1222 | (fringe_id, face) |
| 1223 | Lisp_Object fringe_id, face; | 1223 | Lisp_Object fringe_id, face; |
| @@ -1244,7 +1244,7 @@ If FACE is nil, reset face to default fringe face. */) | |||
| 1244 | 1244 | ||
| 1245 | DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos, Sfringe_bitmaps_at_pos, | 1245 | DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos, Sfringe_bitmaps_at_pos, |
| 1246 | 0, 2, 0, | 1246 | 0, 2, 0, |
| 1247 | doc: /* Return fringe bitmaps of row containing position POS in window WINDOW. | 1247 | doc: /* Return fringe bitmaps of row containing position POS in window WINDOW. |
| 1248 | If WINDOW is nil, use selected window. If POS is nil, use value of point | 1248 | If WINDOW is nil, use selected window. If POS is nil, use value of point |
| 1249 | in that window. Return value is a cons (LEFT . RIGHT) where LEFT and RIGHT | 1249 | in that window. Return value is a cons (LEFT . RIGHT) where LEFT and RIGHT |
| 1250 | are the fringe bitmap numbers for the bitmaps in the left and right fringe, | 1250 | are the fringe bitmap numbers for the bitmaps in the left and right fringe, |
| @@ -1346,7 +1346,7 @@ w32_reset_fringes () | |||
| 1346 | { | 1346 | { |
| 1347 | /* Destroy row bitmaps. */ | 1347 | /* Destroy row bitmaps. */ |
| 1348 | int bt; | 1348 | int bt; |
| 1349 | 1349 | ||
| 1350 | for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++) | 1350 | for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++) |
| 1351 | rif->destroy_fringe_bitmap (bt); | 1351 | rif->destroy_fringe_bitmap (bt); |
| 1352 | } | 1352 | } |