Fix typo in last obstack.h change.
authorJim Wilson <wilson@cygnus.com>
Wed, 22 Oct 1997 01:16:10 +0000 (01:16 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 22 Oct 1997 01:16:10 +0000 (18:16 -0700)
* obstack.h (obstack_empty_p): Fix spurious space after backslash.

From-SVN: r16144

gcc/ChangeLog
gcc/obstack.h

index aeac9b9abc05312aed43a775cb0fdf4bdc7227ce..8b80c2e95afc6348abd660c4764fec5fc37c45a0 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct 21 18:14:03 1997  Jim Wilson  <wilson@cygnus.com>
+
+       * obstack.h (obstack_empty_p): Fix spurious space after backslash.
+
 Tue Oct 21 18:34:01 1997  Geoffrey KEATING  <geoffk@ozemail.com.au>
 
        * rs6000.c: Avoid creating a stack frame under SYSV ABI if we
index 1b172acab276cf4354164b1262d7cca48cf41fbe..461a11d933730a1a35eada5ab3fada84ffacb5e8 100644 (file)
@@ -465,7 +465,7 @@ __extension__                                                               \
 #define obstack_room(h)                \
  (unsigned) ((h)->chunk_limit - (h)->next_free)
 
-#define obstack_empty_p(h) \ 
+#define obstack_empty_p(h) \
  ((h)->chunk->prev == 0 && (h)->next_free - (h)->chunk->contents == 0)
 
 /* Note that the call to _obstack_newchunk is enclosed in (..., 0)