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

git pushed a commit to branch wl/browser-all
in repository enlightenment.

View the commit online.

commit b4518c48e19c6b01d80e640e95259aad0c706e1b
Author: Cedric BAIL <[email protected]>
AuthorDate: Tue Aug 18 09:40:32 2026 -0600

    e_comp_wl - drop three debug prints that were never meant to ship
    
    Left behind by the maximize/restore investigation and swept into an
    unrelated commit. They are unguarded fprintf to stderr on paths that run
    constantly: every xdg_toplevel configure, every ack_configure, and every
    commit that carries a maximize or unmaximize request. A busy session
    writes them by the thousand, and one of the three is in e_comp_wl.c,
    which the X11 compositor shares.
    
    Both locals the configure print read are still used by the code around
    it, so this is a pure deletion.
    
    Co-Authored-By: Claude Opus 5 <[email protected]>
    Claude-Session: https://claude.ai/code/session_01FtoiXoSKUmZb6Aix6U3GZS
---
 src/bin/e_comp_wl.c                | 4 ----
 src/modules/wl_desktop_shell/xdg.c | 2 --
 2 files changed, 6 deletions(-)

diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index 2a8ceda14..eae1e6936 100644
--- a/src/bin/e_comp_wl.c
+++ b/src/bin/e_comp_wl.c
@@ -2151,10 +2151,6 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state)
    if (!_e_comp_wl_viewport_state_check(ec, state)) return;
 
    ec->comp_data->in_commit = 1;
-   if (ec->comp_data->shell.set.maximize || ec->comp_data->shell.set.unmaximize)
-     fprintf(stderr, "DBG commit: set.max=%d set.unmax=%d ecmax=0x%x\n",
-             ec->comp_data->shell.set.maximize, ec->comp_data->shell.set.unmaximize,
-             ec->maximized);
 
    /* Latch the viewport before anything reads a size. set_source and
     * set_destination are double buffered like the rest of the surface state,
diff --git a/src/modules/wl_desktop_shell/xdg.c b/src/modules/wl_desktop_shell/xdg.c
index 47929d142..2da04365d 100644
--- a/src/modules/wl_desktop_shell/xdg.c
+++ b/src/modules/wl_desktop_shell/xdg.c
@@ -629,7 +629,6 @@ _xdg_shell_surface_send_configure(struct wl_resource *resource, Eina_Bool fullsc
 
    _e_xdg_toplevel_configure_bounds_send(resource, ec);
    serial = wl_display_next_serial(e_comp_wl->wl.disp);
-   fprintf(stderr, "DBG send=%u %dx%d max=%d pending=0x%x\n", serial, width, height, maximized, pending);
    xdg_toplevel_send_configure(resource, width, height, &states);
    {
       Pending_State *ps;
@@ -837,7 +836,6 @@ _e_xdg_surface_cb_ack_configure(struct wl_client *client EINA_UNUSED, struct wl_
    EINA_LIST_FOREACH_SAFE(shd->pending, l, ll, ps)
      {
         if (ps->serial > serial) break;
-        fprintf(stderr, "DBG ack=%u ps=%u state=0x%x\n", serial, ps->serial, ps->state);
         if (ps->state & STATE_FULLSCREEN)
           {
              ec->comp_data->shell.set.fullscreen = 1;

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

Reply via email to