This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* On-Demand Random Number Generator | |
* | |
* (C) Copyright 2010, Mauricio Faria de Oliveira | |
* http://mfoliveira.org | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur evrouter-0.4/src/action_xbutton.c evrouter-0.4/src.new/action_xbutton.c | |
--- evrouter-0.4/src/action_xbutton.c 2009-03-02 21:01:43.000000000 -0300 | |
+++ evrouter-0.4/src.new/action_xbutton.c 2010-12-24 14:24:32.000000000 -0200 | |
@@ -84,7 +84,11 @@ | |
XTestFakeButtonEvent (d, r->action.xbutton.button, True, 0); | |
break; | |
- case 2: /* Ignore key repeats */ | |
+ case 2: /* Key repeats */ | |
+ if (key_repeats) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Single-variable List Comprehension in C++ using Preprocessor Macros | |
* | |
* (C) Copyright 2011, Mauricio Faria de Oliveira | |
* http://mfoliveira.org | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "yield.h" | |
class Fibonacci { | |
protected: | |
/* Yield's internal */ | |
void *YIELD_POINTER; | |
/* Fibonacci terms */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nothing |