aboutsummaryrefslogtreecommitdiffstats
path: root/src/fringe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fringe.c')
-rw-r--r--src/fringe.c11
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
67Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow; 67static Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow;
68Lisp_Object Qempty_line, Qtop_bottom; 68static Lisp_Object Qempty_line, Qtop_bottom;
69Lisp_Object Qhollow_small; 69static Lisp_Object Qhollow_small;
70 70
71enum fringe_bitmap_align 71enum 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
430struct fringe_bitmap standard_bitmaps[] = 430static 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;
462static Lisp_Object *fringe_faces; 462static Lisp_Object *fringe_faces;
463static int max_fringe_bitmaps; 463static int max_fringe_bitmaps;
464 464
465#ifndef HAVE_NS
466static
467#endif
465int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS; 468int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS;
466 469
467 470