repo: rxvt-unicode-sixel
action: commit
revision: 
path_from: 
revision_from: ac63637277eda918fc9bc93f87405bff5591a8d2:
path_to: 
revision_to: 
git.thebackupbox.net
rxvt-unicode-sixel
git clone git://git.thebackupbox.net/rxvt-unicode-sixel
commit ac63637277eda918fc9bc93f87405bff5591a8d2
Author: Emanuele Giaquinta 
Date:   Tue Feb 1 00:41:01 2011 +0000

    Use true/false rather than True/False when the type is bool.

diff --git a/src/command.C b/src/command.C
index f04c84557bcb952636d9cdb9fa0435f2c1878241..
index ..0a4e2ddc2445c0d3b9d2ffe8cbb04b039fc37f10 100644
--- a/src/command.C
+++ b/src/command.C
@@ -1553,7 +1553,7 @@ rxvt_term::x_cb (XEvent &ev)
             do
               {
                 scr_expose (ev.xexpose.x, ev.xexpose.y,
-                            ev.xexpose.width, ev.xexpose.height, False);
+                            ev.xexpose.width, ev.xexpose.height, false);
               }
             while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev));

@@ -1562,7 +1562,7 @@ rxvt_term::x_cb (XEvent &ev)
             while (XCheckTypedWindowEvent (dpy, vt, ev.xany.type, &ev))
               {
                 scr_expose (ev.xexpose.x, ev.xexpose.y,
-                            ev.xexpose.width, ev.xexpose.height, False);
+                            ev.xexpose.width, ev.xexpose.height, false);
               }

             want_refresh = 1;
diff --git a/src/main.C b/src/main.C
index 8f4c3312d3bb87f58841e8f7bc666456cf91507b..
index ..f288d9bf918d22cefa78bcfae825ef2a30337cab 100644
--- a/src/main.C
+++ b/src/main.C
@@ -1177,10 +1177,10 @@ rxvt_term::IMisRunning ()
       win = XGetSelectionOwner (dpy, atom);

       if (win != None)
-        return True;
+        return true;
     }

-  return False;
+  return false;
 }

 void
diff --git a/src/screen.C b/src/screen.C
index 17047df48cf7592200d5c335b323486d3d2da675..
index ..f2430b931617664ba4cce8711bf376be42c3c188 100644
--- a/src/screen.C
+++ b/src/screen.C
@@ -2841,7 +2841,7 @@ rxvt_term::selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW
                * pass through again trying CUT_BUFFER0 if we've come from
                * XConvertSelection () but nothing was presented
                */
-              selection_paste (display->root, XA_CUT_BUFFER0, False);
+              selection_paste (display->root, XA_CUT_BUFFER0, false);
             }

           goto bailout;

-----END OF PAGE-----