change comment-style in .c file - svkbd - simple virtual keyboard
  HTML git clone git://git.suckless.org/svkbd
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 6a1431933125e26994554817baf5d5a85402b814
   DIR parent 378a1c8b308ebe09af1ad87ea00bf142313c6fdd
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Mon, 12 Jul 2021 12:51:52 +0200
       
       change comment-style in .c file
       
       Diffstat:
         M svkbd.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/svkbd.c b/svkbd.c
       @@ -1052,7 +1052,7 @@ showoverlay(int idx)
                        if (overlay[i].keysym == XK_Cancel) {
                                break;
                        }
       -                //certain modifier keys and basic keys are excluded from being overlayed:
       +                /* certain modifier keys and basic keys are excluded from being overlayed: */
                        while (keys[j].keysym == 0 || keys[j].keysym == XK_Shift_L ||
                                        keys[j].keysym == XK_Shift_R || keys[j].keysym == XK_Control_L ||
                                        keys[j].keysym == XK_Control_R || keys[j].keysym == XK_Alt_L ||