diff options
| author | Gerd Moellmann | 1999-08-24 19:25:02 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-24 19:25:02 +0000 |
| commit | e536f7a0a8af33b1f293085ec5854d52dea6e0b6 (patch) | |
| tree | 84cad706e90571420e1ac381f8087727846364aa /src | |
| parent | c59c668a2dea56aa0e1fb7f4a0fb88d7bbfa3047 (diff) | |
| download | emacs-e536f7a0a8af33b1f293085ec5854d52dea6e0b6.tar.gz emacs-e536f7a0a8af33b1f293085ec5854d52dea6e0b6.zip | |
(Qmargin): Replacement for Qbitmap_area.
(realize_basic_faces): Replace Qmargin for Qbitmap_area.
(syms_of_xfaces): Ditto.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index aa3f63a885c..96ed047cb7c 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -280,7 +280,7 @@ Lisp_Object Qx_charset_registry; | |||
| 280 | 280 | ||
| 281 | /* Names of basic faces. */ | 281 | /* Names of basic faces. */ |
| 282 | 282 | ||
| 283 | Lisp_Object Qdefault, Qmodeline, Qtoolbar, Qregion, Qbitmap_area; | 283 | Lisp_Object Qdefault, Qmodeline, Qtoolbar, Qregion, Qmargin; |
| 284 | Lisp_Object Qtop_line; | 284 | Lisp_Object Qtop_line; |
| 285 | 285 | ||
| 286 | /* Default stipple pattern used on monochrome displays. This stipple | 286 | /* Default stipple pattern used on monochrome displays. This stipple |
| @@ -5131,7 +5131,7 @@ realize_basic_faces (f) | |||
| 5131 | { | 5131 | { |
| 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, Qtoolbar, TOOLBAR_FACE_ID); | 5133 | realize_named_face (f, Qtoolbar, TOOLBAR_FACE_ID); |
| 5134 | realize_named_face (f, Qbitmap_area, 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, Qtop_line, TOP_LINE_FACE_ID); |
| 5136 | success_p = 1; | 5136 | success_p = 1; |
| 5137 | } | 5137 | } |
| @@ -6246,8 +6246,8 @@ syms_of_xfaces () | |||
| 6246 | staticpro (&Qtoolbar); | 6246 | staticpro (&Qtoolbar); |
| 6247 | Qregion = intern ("region"); | 6247 | Qregion = intern ("region"); |
| 6248 | staticpro (&Qregion); | 6248 | staticpro (&Qregion); |
| 6249 | Qbitmap_area = intern ("bitmap-area"); | 6249 | Qmargin = intern ("margin"); |
| 6250 | staticpro (&Qbitmap_area); | 6250 | staticpro (&Qmargin); |
| 6251 | Qtop_line = intern ("top-line"); | 6251 | Qtop_line = intern ("top-line"); |
| 6252 | staticpro (&Qtop_line); | 6252 | staticpro (&Qtop_line); |
| 6253 | 6253 | ||