~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to gram.y

  • Committer: Matthew Fuller
  • Date: 2016-06-12 02:16:12 UTC
  • mto: This revision was merged to the branch mainline in revision 495.
  • Revision ID: fullermd@over-yonder.net-20160612021612-p52s5vk3342jc1s1
Correct some False's that should already be false's on
vars/returns/etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
                  win_list
330
330
                | ALWAYS_ON_TOP         { curplist = OtpScrPriorityL(Scr, WinWin, 8); }
331
331
                  win_list
332
 
                | PRIORITY_SWITCHING    { OtpScrSetSwitching(Scr, WinWin, False);
 
332
                | PRIORITY_SWITCHING    { OtpScrSetSwitching(Scr, WinWin, false);
333
333
                                          curplist = OtpScrSwitchingL(Scr, WinWin); }
334
334
                  win_list
335
 
                | PRIORITY_NOT_SWITCHING { OtpScrSetSwitching(Scr, WinWin, True);
 
335
                | PRIORITY_NOT_SWITCHING { OtpScrSetSwitching(Scr, WinWin, true);
336
336
                                          curplist = OtpScrSwitchingL(Scr, WinWin); }
337
337
                  win_list
338
338
                | PRIORITY_SWITCHING ICONS
339
 
                                        { OtpScrSetSwitching(Scr, IconWin, False);
 
339
                                        { OtpScrSetSwitching(Scr, IconWin, false);
340
340
                                        curplist = OtpScrSwitchingL(Scr, IconWin); }
341
341
                  win_list
342
342
                | PRIORITY_NOT_SWITCHING ICONS
343
 
                                        { OtpScrSetSwitching(Scr, IconWin, True);
 
343
                                        { OtpScrSetSwitching(Scr, IconWin, true);
344
344
                                          curplist = OtpScrSwitchingL(Scr, IconWin); }
345
345
                  win_list
346
346