diff options
| author | Gerd Moellmann | 1999-09-05 16:39:19 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-05 16:39:19 +0000 |
| commit | 045dee35ff74932bbaa0d603bd6f0b4e51a6fbd0 (patch) | |
| tree | d30d50ac8f82d4994290a9fb87eb34816f563fc6 /src/xfaces.c | |
| parent | e5e7779fb41613580088a4819264cc10a0eea230 (diff) | |
| download | emacs-045dee35ff74932bbaa0d603bd6f0b4e51a6fbd0.tar.gz emacs-045dee35ff74932bbaa0d603bd6f0b4e51a6fbd0.zip | |
Change
`top-line' and `top_line' to `header-line' and `header_line'.
Likewise for similar spellings.
Diffstat (limited to 'src/xfaces.c')
| -rw-r--r-- | src/xfaces.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 9efdfb4574e..34d02ee84a0 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -281,7 +281,7 @@ Lisp_Object Qx_charset_registry; | |||
| 281 | /* Names of basic faces. */ | 281 | /* Names of basic faces. */ |
| 282 | 282 | ||
| 283 | Lisp_Object Qdefault, Qmodeline, Qtool_bar, Qregion, Qmargin; | 283 | Lisp_Object Qdefault, Qmodeline, Qtool_bar, Qregion, Qmargin; |
| 284 | Lisp_Object Qtop_line; | 284 | Lisp_Object Qheader_line; |
| 285 | 285 | ||
| 286 | /* Default stipple pattern used on monochrome displays. This stipple | 286 | /* Default stipple pattern used on monochrome displays. This stipple |
| 287 | pattern is used on monochrome displays instead of shades of gray | 287 | pattern is used on monochrome displays instead of shades of gray |
| @@ -5132,7 +5132,7 @@ realize_basic_faces (f) | |||
| 5132 | realize_named_face (f, Qmodeline, MODE_LINE_FACE_ID); | 5132 | realize_named_face (f, Qmodeline, MODE_LINE_FACE_ID); |
| 5133 | realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID); | 5133 | realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID); |
| 5134 | realize_named_face (f, Qmargin, BITMAP_AREA_FACE_ID); | 5134 | realize_named_face (f, Qmargin, BITMAP_AREA_FACE_ID); |
| 5135 | realize_named_face (f, Qtop_line, TOP_LINE_FACE_ID); | 5135 | realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID); |
| 5136 | success_p = 1; | 5136 | success_p = 1; |
| 5137 | } | 5137 | } |
| 5138 | 5138 | ||
| @@ -5954,7 +5954,7 @@ face_at_buffer_position (w, pos, region_beg, region_end, | |||
| 5954 | REGION_BEG and REGION_END give the start and end positions of the | 5954 | REGION_BEG and REGION_END give the start and end positions of the |
| 5955 | region; both are -1 if no region is visible. BASE_FACE_ID is the | 5955 | region; both are -1 if no region is visible. BASE_FACE_ID is the |
| 5956 | id of the basic face to merge with. It is usually equal to | 5956 | id of the basic face to merge with. It is usually equal to |
| 5957 | DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or TOP_LINE_FACE_ID | 5957 | DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID |
| 5958 | for strings displayed in the mode or top line. | 5958 | for strings displayed in the mode or top line. |
| 5959 | 5959 | ||
| 5960 | Set *ENDPTR to the next position where to check for faces in | 5960 | Set *ENDPTR to the next position where to check for faces in |
| @@ -6248,8 +6248,8 @@ syms_of_xfaces () | |||
| 6248 | staticpro (&Qregion); | 6248 | staticpro (&Qregion); |
| 6249 | Qmargin = intern ("margin"); | 6249 | Qmargin = intern ("margin"); |
| 6250 | staticpro (&Qmargin); | 6250 | staticpro (&Qmargin); |
| 6251 | Qtop_line = intern ("top-line"); | 6251 | Qheader_line = intern ("header-line"); |
| 6252 | staticpro (&Qtop_line); | 6252 | staticpro (&Qheader_line); |
| 6253 | 6253 | ||
| 6254 | defsubr (&Sinternal_make_lisp_face); | 6254 | defsubr (&Sinternal_make_lisp_face); |
| 6255 | defsubr (&Sinternal_lisp_face_p); | 6255 | defsubr (&Sinternal_lisp_face_p); |