X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2FEmacsShell.c;h=db7231029e207498e5595862e8740b4a3188bc18;hb=63a686a3d18465a8c96b8cc4a273c295f8a5a379;hp=eef2edb7652e5b47a1dfa76d867e0348a33658cc;hpb=77dcef404dc78635f6ffa8f71a803d2bc7cc8921;p=chise%2Fxemacs-chise.git.1 diff --git a/src/EmacsShell.c b/src/EmacsShell.c index eef2edb..db72310 100644 --- a/src/EmacsShell.c +++ b/src/EmacsShell.c @@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */ #include +#include #include #include #include @@ -33,6 +34,8 @@ Boston, MA 02111-1307, USA. */ #include "EmacsShell.h" #include "ExternalShell.h" +#define ABORT abort + #if 0 /* Not currently used */ /* The root_geometry_manager() method in Shell.c is fucked up with regard @@ -155,10 +158,10 @@ EmacsShellUpdateSizeHints (Widget gw) TopLevelEmacsShellUpdateSizeHints (gw); #ifdef EXTERNAL_WIDGET else if (XtIsSubclass (gw, externalShellWidgetClass)) - /* do what ??? Don't abort! */; + /* do what ??? Don't ABORT! */; #endif else if (XtIsSubclass (gw, transientEmacsShellWidgetClass)) TransientEmacsShellUpdateSizeHints (gw); else - abort (); + ABORT (); }