diff options
author | Jim Blandy <jimb@redhat.com> | 1993-02-22 14:20:51 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-02-22 14:20:51 +0000 |
commit | 067cd4a40b11fe22db3e02da8af67f8d058bf9ef (patch) | |
tree | cd73194c0083cf325ae60ccc8b1240ce9c7d3dea /src/m/ibmrs6000.h | |
parent | 1ab31687d41ee63c4aa4e10fe591c2d8133a5d56 (diff) | |
download | emacs-067cd4a40b11fe22db3e02da8af67f8d058bf9ef.tar.gz |
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
is not defined.
(X_DEFAULT_FONT): Change to `fixed', as `Rom14.500' only works on the
console.
Diffstat (limited to 'src/m/ibmrs6000.h')
-rw-r--r-- | src/m/ibmrs6000.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h index 14d0dd5a565..87fc82c66f6 100644 --- a/src/m/ibmrs6000.h +++ b/src/m/ibmrs6000.h @@ -102,12 +102,16 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ Define neither one if an assembler-language alloca in the file alloca.s should be used. */ +/* Note: aix3-2.h defines HAVE_ALLOCA; aix3-1.h doesn't. */ +#ifndef HAVE_ALLOCA #define C_ALLOCA #define STACK_DIRECTION -1 /* tell alloca.c which way it grows */ +#endif -/* Specify the font for X to use. */ - -#define X_DEFAULT_FONT "Rom14.500" +/* Specify the font for X to use. + This used to be Rom14.500; that's nice on the X server shipped with + the RS/6000, but it's not available on other servers. */ +#define X_DEFAULT_FONT "fixed" /* Here override various assumptions in ymakefile */ |