diff options
| author | Pavel Janík | 2001-12-18 06:26:27 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-18 06:26:27 +0000 |
| commit | 9908a32442f340310d903151a58401eae43ca073 (patch) | |
| tree | c6cfdfe7ec5f75ba757efdc90a01fab7fa6ce2c1 /src | |
| parent | 8103ad1ab61fc472730b9e4a08063f362c234891 (diff) | |
| download | emacs-9908a32442f340310d903151a58401eae43ca073.tar.gz emacs-9908a32442f340310d903151a58401eae43ca073.zip | |
(x_frame_parms): Add missing braces around initializer.
(visual_classes): Likewise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/src/xfns.c b/src/xfns.c index 49ddb9ad6b0..e310c318850 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -778,34 +778,34 @@ static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p)); | |||
| 778 | 778 | ||
| 779 | static struct x_frame_parm_table x_frame_parms[] = | 779 | static struct x_frame_parm_table x_frame_parms[] = |
| 780 | { | 780 | { |
| 781 | "auto-raise", x_set_autoraise, | 781 | {"auto-raise", x_set_autoraise}, |
| 782 | "auto-lower", x_set_autolower, | 782 | {"auto-lower", x_set_autolower}, |
| 783 | "background-color", x_set_background_color, | 783 | {"background-color", x_set_background_color}, |
| 784 | "border-color", x_set_border_color, | 784 | {"border-color", x_set_border_color}, |
| 785 | "border-width", x_set_border_width, | 785 | {"border-width", x_set_border_width}, |
| 786 | "cursor-color", x_set_cursor_color, | 786 | {"cursor-color", x_set_cursor_color}, |
| 787 | "cursor-type", x_set_cursor_type, | 787 | {"cursor-type", x_set_cursor_type}, |
| 788 | "font", x_set_font, | 788 | {"font", x_set_font}, |
| 789 | "foreground-color", x_set_foreground_color, | 789 | {"foreground-color", x_set_foreground_color}, |
| 790 | "icon-name", x_set_icon_name, | 790 | {"icon-name", x_set_icon_name}, |
| 791 | "icon-type", x_set_icon_type, | 791 | {"icon-type", x_set_icon_type}, |
| 792 | "internal-border-width", x_set_internal_border_width, | 792 | {"internal-border-width", x_set_internal_border_width}, |
| 793 | "menu-bar-lines", x_set_menu_bar_lines, | 793 | {"menu-bar-lines", x_set_menu_bar_lines}, |
| 794 | "mouse-color", x_set_mouse_color, | 794 | {"mouse-color", x_set_mouse_color}, |
| 795 | "name", x_explicitly_set_name, | 795 | {"name", x_explicitly_set_name}, |
| 796 | "scroll-bar-width", x_set_scroll_bar_width, | 796 | {"scroll-bar-width", x_set_scroll_bar_width}, |
| 797 | "title", x_set_title, | 797 | {"title", x_set_title}, |
| 798 | "unsplittable", x_set_unsplittable, | 798 | {"unsplittable", x_set_unsplittable}, |
| 799 | "vertical-scroll-bars", x_set_vertical_scroll_bars, | 799 | {"vertical-scroll-bars", x_set_vertical_scroll_bars}, |
| 800 | "visibility", x_set_visibility, | 800 | {"visibility", x_set_visibility}, |
| 801 | "tool-bar-lines", x_set_tool_bar_lines, | 801 | {"tool-bar-lines", x_set_tool_bar_lines}, |
| 802 | "scroll-bar-foreground", x_set_scroll_bar_foreground, | 802 | {"scroll-bar-foreground", x_set_scroll_bar_foreground}, |
| 803 | "scroll-bar-background", x_set_scroll_bar_background, | 803 | {"scroll-bar-background", x_set_scroll_bar_background}, |
| 804 | "screen-gamma", x_set_screen_gamma, | 804 | {"screen-gamma", x_set_screen_gamma}, |
| 805 | "line-spacing", x_set_line_spacing, | 805 | {"line-spacing", x_set_line_spacing}, |
| 806 | "left-fringe", x_set_fringe_width, | 806 | {"left-fringe", x_set_fringe_width}, |
| 807 | "right-fringe", x_set_fringe_width, | 807 | {"right-fringe", x_set_fringe_width}, |
| 808 | "wait-for-wm", x_set_wait_for_wm | 808 | {"wait-for-wm", x_set_wait_for_wm} |
| 809 | }; | 809 | }; |
| 810 | 810 | ||
| 811 | /* Attach the `x-frame-parameter' properties to | 811 | /* Attach the `x-frame-parameter' properties to |
| @@ -5005,7 +5005,7 @@ visual_classes[] = | |||
| 5005 | {"PseudoColor", PseudoColor}, | 5005 | {"PseudoColor", PseudoColor}, |
| 5006 | {"TrueColor", TrueColor}, | 5006 | {"TrueColor", TrueColor}, |
| 5007 | {"DirectColor", DirectColor}, | 5007 | {"DirectColor", DirectColor}, |
| 5008 | NULL | 5008 | {NULL, 0} |
| 5009 | }; | 5009 | }; |
| 5010 | 5010 | ||
| 5011 | 5011 | ||