This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository e16.

View the commit online.

commit 59167c115baa4df652d2e80a11b0536aec104cd3
Author: Kim Woelders <[email protected]>
AuthorDate: Sat Sep 27 07:48:01 2025 +0200

    ewins: Add comments with flag values
    
    Facilitating debugging.
---
 src/ewin-ops.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/ewin-ops.c b/src/ewin-ops.c
index 2a73bc8e..efaaaad6 100644
--- a/src/ewin-ops.c
+++ b/src/ewin-ops.c
@@ -1,6 +1,6 @@
 /*
  * Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
- * Copyright (C) 2004-2023 Kim Woelders
+ * Copyright (C) 2004-2025 Kim Woelders
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to
@@ -151,12 +151,12 @@ EwinDetermineArea(EWin *ewin)
     }
 }
 
-#define MRF_DESK    (1<<0)
-#define MRF_MOVE    (1<<1)
-#define MRF_RESIZE  (1<<2)
-#define MRF_RAISE   (1<<3)
-#define MRF_FLOAT   (1<<4)
-#define MRF_UNFLOAT (1<<5)
+#define MRF_DESK    (1 << 0)    /* 0x01 */
+#define MRF_MOVE    (1 << 1)    /* 0x02 */
+#define MRF_RESIZE  (1 << 2)    /* 0x04 */
+#define MRF_RAISE   (1 << 3)    /* 0x08 */
+#define MRF_FLOAT   (1 << 4)    /* 0x10 */
+#define MRF_UNFLOAT (1 << 5)    /* 0x20 */
 
 static void
 doEwinMoveResize(EWin *ewin, Desk *dsk, int x, int y, int w, int h, int flags)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to