Mercurial > emacs
changeset 25728:342027dc53c2
(set_frame_size, EmacsFrameSetCharSize): Remove
unused variables.
(mark_shell_size_user_specified): Put in #if 0 because not used.
(create_frame_gcs): Put in #if 0 because currently unused.
(first_frame_p): Ditto.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 15 Sep 1999 12:58:42 +0000 |
parents | 46fe79182b54 |
children | 7b888fb10913 |
files | src/widget.c |
diffstat | 1 files changed, 11 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/src/widget.c Wed Sep 15 12:58:40 1999 +0000 +++ b/src/widget.c Wed Sep 15 12:58:42 1999 +0000 @@ -238,6 +238,8 @@ return wmshell; } +#if 0 /* Currently not used. */ + static void mark_shell_size_user_specified (wmshell) Widget wmshell; @@ -248,6 +250,8 @@ ((WMShellWidget) wmshell)->wm.size_hints.flags |= USSize; } +#endif + /* Can't have static frame locals because of some broken compilers. Normally, initializing a variable like this doesn't work in emacs, @@ -255,7 +259,9 @@ thus have its data not go into text space) because Xt needs to write to initialized data objects too. */ +#if 0 static Boolean first_frame_p = True; +#endif static void set_frame_size (ew) @@ -296,30 +302,12 @@ */ - /* Geometry of the AppShell */ - int app_flags = 0; - int app_x = 0; - int app_y = 0; - unsigned int app_w = 0; - unsigned int app_h = 0; - - /* Geometry of the EmacsFrame */ - int frame_flags = 0; - int frame_x = 0; - int frame_y = 0; - unsigned int frame_w = 0; - unsigned int frame_h = 0; - /* Hairily merged geometry */ - int x = 0; - int y = 0; unsigned int w = ew->emacs_frame.frame->width; unsigned int h = ew->emacs_frame.frame->height; - int flags = 0; Widget wmshell = get_wm_shell ((Widget) ew); /* Each Emacs shell is now independent and top-level. */ - Widget app_shell = wmshell; if (! XtIsSubclass (wmshell, shellWidgetClass)) abort (); @@ -432,7 +420,6 @@ { struct frame* frame = ew->emacs_frame.frame; Dimension pixel_width, pixel_height; - char shell_position [32]; /* Take into account the size of the scrollbar. Always use the number of columns occupied by the scroll bar here otherwise we @@ -546,6 +533,8 @@ 0); } +#if 0 + static void create_frame_gcs (ew) EmacsFrame ew; @@ -565,6 +554,8 @@ s->output_data.x->white_relief.gc = 0; } +#endif /* 0 */ + static char setup_frame_cursor_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -906,12 +897,10 @@ int rows; { EmacsFrame ew = (EmacsFrame) widget; - Dimension pixel_width, pixel_height, granted_width, granted_height; - XtGeometryResult result; + Dimension pixel_width, pixel_height; struct frame *f = ew->emacs_frame.frame; Arg al[10]; int ac = 0; - Dimension border_width; if (columns < 3) columns = 3; /* no way buddy */