diff options
| author | Jim Blandy <jimb@redhat.com> | 1993-03-25 02:16:10 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1993-03-25 02:16:10 +0000 |
| commit | 0a93081cd207d299ebef3946dbf67489714301a4 (patch) | |
| tree | 4caadc93d57c11e60f4312f0d45eb75ee0c8d184 | |
| parent | f802f8e0a033adf65dac58adeeba6cef6b8f1955 (diff) | |
| download | emacs-0a93081cd207d299ebef3946dbf67489714301a4.tar.gz | |
* xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 796231c64dd..6b43d198667 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -37,7 +37,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_X_WINDOWS extern void abort (); +#ifndef VMS #include <X11/bitmaps/gray> +#else +#include "[.bitmaps]gray.xbm" +#endif #define min(a,b) ((a) < (b) ? (a) : (b)) #define max(a,b) ((a) > (b) ? (a) : (b)) |
