diff options
Diffstat (limited to 'src/fringe.c')
| -rw-r--r-- | src/fringe.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/fringe.c b/src/fringe.c index ce75df766ee..bc6b493584c 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -64,9 +64,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 64 | must specify physical bitmap symbols. | 64 | must specify physical bitmap symbols. |
| 65 | */ | 65 | */ |
| 66 | 66 | ||
| 67 | Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow; | 67 | static Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow; |
| 68 | Lisp_Object Qempty_line, Qtop_bottom; | 68 | static Lisp_Object Qempty_line, Qtop_bottom; |
| 69 | Lisp_Object Qhollow_small; | 69 | static Lisp_Object Qhollow_small; |
| 70 | 70 | ||
| 71 | enum fringe_bitmap_align | 71 | enum fringe_bitmap_align |
| 72 | { | 72 | { |
| @@ -427,7 +427,7 @@ static unsigned short empty_line_bits[] = { | |||
| 427 | /* NOTE: The order of these bitmaps must match the sequence | 427 | /* NOTE: The order of these bitmaps must match the sequence |
| 428 | used in fringe.el to define the corresponding symbols. */ | 428 | used in fringe.el to define the corresponding symbols. */ |
| 429 | 429 | ||
| 430 | struct fringe_bitmap standard_bitmaps[] = | 430 | static struct fringe_bitmap standard_bitmaps[] = |
| 431 | { | 431 | { |
| 432 | { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */ | 432 | { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */ |
| 433 | { FRBITS (question_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, | 433 | { FRBITS (question_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, |
| @@ -462,6 +462,9 @@ static struct fringe_bitmap **fringe_bitmaps; | |||
| 462 | static Lisp_Object *fringe_faces; | 462 | static Lisp_Object *fringe_faces; |
| 463 | static int max_fringe_bitmaps; | 463 | static int max_fringe_bitmaps; |
| 464 | 464 | ||
| 465 | #ifndef HAVE_NS | ||
| 466 | static | ||
| 467 | #endif | ||
| 465 | int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS; | 468 | int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS; |
| 466 | 469 | ||
| 467 | 470 | ||