Lines Matching refs:spell_aep
2694 attrentry_T *spell_aep; in hl_combine_attr() local
2722 spell_aep = syn_gui_attr2entry(prim_attr); in hl_combine_attr()
2723 if (spell_aep != NULL) in hl_combine_attr()
2726 spell_aep->ae_attr); in hl_combine_attr()
2727 if (spell_aep->ae_u.gui.fg_color != INVALCOLOR) in hl_combine_attr()
2728 new_en.ae_u.gui.fg_color = spell_aep->ae_u.gui.fg_color; in hl_combine_attr()
2729 if (spell_aep->ae_u.gui.bg_color != INVALCOLOR) in hl_combine_attr()
2730 new_en.ae_u.gui.bg_color = spell_aep->ae_u.gui.bg_color; in hl_combine_attr()
2731 if (spell_aep->ae_u.gui.sp_color != INVALCOLOR) in hl_combine_attr()
2732 new_en.ae_u.gui.sp_color = spell_aep->ae_u.gui.sp_color; in hl_combine_attr()
2733 if (spell_aep->ae_u.gui.font != NOFONT) in hl_combine_attr()
2734 new_en.ae_u.gui.font = spell_aep->ae_u.gui.font; in hl_combine_attr()
2736 if (spell_aep->ae_u.gui.fontset != NOFONTSET) in hl_combine_attr()
2737 new_en.ae_u.gui.fontset = spell_aep->ae_u.gui.fontset; in hl_combine_attr()
2767 spell_aep = syn_cterm_attr2entry(prim_attr); in hl_combine_attr()
2768 if (spell_aep != NULL) in hl_combine_attr()
2771 spell_aep->ae_attr); in hl_combine_attr()
2772 if (spell_aep->ae_u.cterm.fg_color > 0) in hl_combine_attr()
2773 new_en.ae_u.cterm.fg_color = spell_aep->ae_u.cterm.fg_color; in hl_combine_attr()
2774 if (spell_aep->ae_u.cterm.bg_color > 0) in hl_combine_attr()
2775 new_en.ae_u.cterm.bg_color = spell_aep->ae_u.cterm.bg_color; in hl_combine_attr()
2776 if (spell_aep->ae_u.cterm.ul_color > 0) in hl_combine_attr()
2777 new_en.ae_u.cterm.ul_color = spell_aep->ae_u.cterm.ul_color; in hl_combine_attr()
2781 if (COLOR_INVALID(spell_aep->ae_u.cterm.fg_rgb) in hl_combine_attr()
2782 && COLOR_INVALID(spell_aep->ae_u.cterm.bg_rgb)) in hl_combine_attr()
2784 if (spell_aep->ae_u.cterm.fg_color > 0) in hl_combine_attr()
2786 if (spell_aep->ae_u.cterm.bg_color > 0) in hl_combine_attr()
2791 if (spell_aep->ae_u.cterm.fg_rgb != INVALCOLOR) in hl_combine_attr()
2792 new_en.ae_u.cterm.fg_rgb = spell_aep->ae_u.cterm.fg_rgb; in hl_combine_attr()
2793 if (spell_aep->ae_u.cterm.bg_rgb != INVALCOLOR) in hl_combine_attr()
2794 new_en.ae_u.cterm.bg_rgb = spell_aep->ae_u.cterm.bg_rgb; in hl_combine_attr()
2796 if (spell_aep->ae_u.cterm.ul_rgb != INVALCOLOR) in hl_combine_attr()
2797 new_en.ae_u.cterm.ul_rgb = spell_aep->ae_u.cterm.ul_rgb; in hl_combine_attr()
2819 spell_aep = syn_term_attr2entry(prim_attr); in hl_combine_attr()
2820 if (spell_aep != NULL) in hl_combine_attr()
2822 new_en.ae_attr = ATTR_COMBINE(new_en.ae_attr, spell_aep->ae_attr); in hl_combine_attr()
2823 if (spell_aep->ae_u.term.start != NULL) in hl_combine_attr()
2825 new_en.ae_u.term.start = spell_aep->ae_u.term.start; in hl_combine_attr()
2826 new_en.ae_u.term.stop = spell_aep->ae_u.term.stop; in hl_combine_attr()