repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: ac63637277eda918fc9bc93f87405bff5591a8d2: path_to: revision_to:
commit ac63637277eda918fc9bc93f87405bff5591a8d2 Author: Emanuele GiaquintaDate: 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
--- 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
--- 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
--- 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-----