]> git.eshelyaron.com Git - emacs.git/commitdiff
Make boolean struct member use one bit
authorAndreas Politz <politza@hochschule-trier.de>
Sat, 7 Oct 2017 15:11:05 +0000 (17:11 +0200)
committerAndreas Politz <politza@hochschule-trier.de>
Sat, 7 Oct 2017 15:11:05 +0000 (17:11 +0200)
* src/itree.h (struct interval_node): Add bit descriptor.

src/itree.h

index d685a69eb781bcdc63efcebb311dce05f97bcce3..80115aa467cb12fda1d31106890293e059d5db19 100644 (file)
@@ -46,7 +46,7 @@ struct interval_node
   ptrdiff_t offset;            /* The amount of shift to apply to this subtree. */
   uintmax_t otick;              /* offset modified tick */
   Lisp_Object data;             /* Exclusively used by the client. */
-  bool_bf visited;              /* For traversal via generator. */
+  bool_bf visited : 1;          /* For traversal via generator. */
   bool_bf rear_advance : 1;     /* Same as for marker and overlays.  */
   bool_bf front_advance : 1;    /* Same as for marker and overlays.  */
 };