# HG changeset patch # User Jim Blandy # Date 710538754 0 # Node ID 593af70322f0ba9a8795ecc8077c9c2ed6595821 # Parent 4714ad36583cad2716542baad030470603378ce9 *** empty log message *** diff -r 4714ad36583c -r 593af70322f0 Makefile.in --- a/Makefile.in Tue Jul 07 18:36:02 1992 +0000 +++ b/Makefile.in Tue Jul 07 19:52:34 1992 +0000 @@ -255,10 +255,9 @@ clean mostlyclean: cd src; make clean - cd lib-src; make clean - if [ `/bin/pwd` != `(cd ${DESTDIR}${LIBDIR}; /bin/pwd)` ] ; then \ - cd etc; make clean; \ - cd arch-lib; make clean; \ + if [ `/bin/pwd` != `(cd ${emacsdir}; /bin/pwd)` ] ; then \ + (cd etc; make clean); \ + (cd lib-src; make clean); \ else true; \ fi cd oldXMenu; make clean diff -r 4714ad36583c -r 593af70322f0 src/m/hp9000s300.h --- a/src/m/hp9000s300.h Tue Jul 07 18:36:02 1992 +0000 +++ b/src/m/hp9000s300.h Tue Jul 07 19:52:34 1992 +0000 @@ -68,11 +68,6 @@ /* #define WORD_MACHINE */ -/* Define how to take a char and sign-extend into an int. - On machines where char is signed, this is a no-op. */ - -#define SIGN_EXTEND_CHAR(c) (c) - /* Now define a symbol for the cpu type, if your compiler does not define it automatically. */ diff -r 4714ad36583c -r 593af70322f0 src/m/ibmps2-aix.h --- a/src/m/ibmps2-aix.h Tue Jul 07 18:36:02 1992 +0000 +++ b/src/m/ibmps2-aix.h Tue Jul 07 19:52:34 1992 +0000 @@ -51,11 +51,6 @@ /* #define WORD_MACHINE */ -/* Define how to take a char and sign-extend into an int. - On machines where char is signed, this is a no-op. */ - -#define SIGN_EXTEND_CHAR(c) ((signed char) (c)) - /* Now define a symbol for the cpu type, if your compiler does not define it automatically: Ones defined so far include vax, m68000, ns16000, pyramid, diff -r 4714ad36583c -r 593af70322f0 src/m/mips.h --- a/src/m/mips.h Tue Jul 07 18:36:02 1992 +0000 +++ b/src/m/mips.h Tue Jul 07 19:52:34 1992 +0000 @@ -51,11 +51,6 @@ #undef WORD_MACHINE -/* Define how to take a char and sign-extend into an int. - On machines where char is signed, this is a no-op. */ - -#define SIGN_EXTEND_CHAR(c) ((signed char)(c)) - /* Now define a symbol for the cpu type, if your compiler does not define it automatically: Ones defined so far include vax, m68000, ns16000, pyramid, diff -r 4714ad36583c -r 593af70322f0 src/m/sparc.h --- a/src/m/sparc.h Tue Jul 07 18:36:02 1992 +0000 +++ b/src/m/sparc.h Tue Jul 07 19:52:34 1992 +0000 @@ -44,11 +44,6 @@ #define NO_ARG_ARRAY -/* Define how to take a char and sign-extend into an int. - On machines where char is signed, this is a no-op. */ - -#define SIGN_EXTEND_CHAR(c) (c) - /* Say this machine is a sparc */ #ifndef sparc