Commit Graph

379 Commits

Author SHA1 Message Date
Cedric BAIL 70e488feff * efl: beta2 !
SVN revision: 54507
2010-11-12 16:01:55 +00:00
Carsten Haitzler f44099436b no more debian dir in our svn - debian now handles this tehmselves.
SVN revision: 54291
2010-11-08 05:49:38 +00:00
Carsten Haitzler 9b0305d236 update links to pawn
SVN revision: 53026
2010-10-04 11:00:21 +00:00
Carsten Haitzler 91466cf439 efl 1.0.0 beta.
SVN revision: 52992
2010-10-03 09:21:08 +00:00
Carsten Haitzler 79f5d9f04d api cleanups too.
SVN revision: 52592
2010-09-22 14:21:55 +00:00
Carsten Haitzler f9d3eff9b3 int->enum.
SVN revision: 52591
2010-09-22 14:13:03 +00:00
Carsten Haitzler eaa190ad0e warnings--
warnings = 0



SVN revision: 52451
2010-09-19 03:00:12 +00:00
Carsten Haitzler 77e3899ad6 warnings--
SVN revision: 52450
2010-09-19 02:51:46 +00:00
Lucas De Marchi 99897788f1 Fix common misspellings
Following misspellings were fixed:

accross->across
calulate->calculate
existance->existence
existant->existent
isnt->isn't
paranthesis->parenthesis
reffered->referred
runing->running
statment->statement
tranformed->transformed
unfortunatly->unfortunately
usefull->useful



SVN revision: 51964
2010-09-08 03:33:11 +00:00
Carsten Haitzler 2e96ecef81 fix possible leak source.
SVN revision: 51699
2010-08-28 14:46:44 +00:00
Carsten Haitzler 393c3fda9f fix possible null str deref.
SVN revision: 51698
2010-08-28 14:45:04 +00:00
Lucas De Marchi d8002ff386 Revert and re-apply badnull patch
Revert previous patch generated by badnull.cocci script, and apply the new one.
The main difference is that assert and assert-like functions are not touched
anymore.




SVN revision: 51650
2010-08-26 01:34:13 +00:00
Carsten Haitzler 87891e6af7 just so you know it was called small earlier with that license.
SVN revision: 51489
2010-08-21 14:28:38 +00:00
Lucas De Marchi 5a8a8c9014 Convert (hopefully) all comparisons to NULL
Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;


other cases:

a == NULL                         !a
a != NULL                         a




SVN revision: 51487
2010-08-21 13:52:25 +00:00
Carsten Haitzler b45bf5e97e copy & paste fix
SVN revision: 51174
2010-08-16 09:00:43 +00:00
Carsten Haitzler 1a40634b0e embryo now ready
SVN revision: 51169
2010-08-16 08:41:15 +00:00
Carsten Haitzler 5187bf3585 fix up copyings likewise. nicely standardised templateish.
SVN revision: 51150
2010-08-16 03:00:16 +00:00
Carsten Haitzler fadfd000e9 fix up copying here too. other license info has always been
there - just not shuffled into standard copying. fix.



SVN revision: 51143
2010-08-15 22:07:29 +00:00
Lucas De Marchi 13d2d20efa Remove comparisons to NULL
Rather than using "== NULL" or "!= NULL", use expression or !expression where
possible.

Patch automatically generated by coccinelle from badnull.cocci and
badnull2.cocci



SVN revision: 51023
2010-08-11 20:35:26 +00:00
Lucas De Marchi 6b5d5eab73 Do not compare pointers to 0
SVN revision: 50973
2010-08-10 19:24:38 +00:00
Gustavo Sverzut Barbieri 0f80a2778c unscrew what lucas screwed with his patch-fu
SVN revision: 50819
2010-08-04 18:33:24 +00:00
Lucas De Marchi 0a4617ae38 FORMATTING
* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0



SVN revision: 50816
2010-08-04 16:57:32 +00:00
Christopher Michael c3ed53b869 Move Embryo.h header to own dir.
SVN revision: 50145
2010-07-09 06:31:53 +00:00
Lucas De Marchi 33892c5fc4 Do not clobber type with var name
value => val, because value is a pre-defined type



SVN revision: 50063
2010-07-06 14:16:41 +00:00
Carsten Haitzler 89baaff057 and final post snap - next releasename
SVN revision: 49903
2010-06-27 14:06:10 +00:00
Carsten Haitzler 83b36be7a3 snap+release
SVN revision: 49899
2010-06-27 13:45:27 +00:00
Carsten Haitzler a476f3b144 Snapshot embryo
SVN revision: 49893
2010-06-27 13:32:49 +00:00
Cedric BAIL a1bfc834d5 * configure.ac: take inept translation a little bit into account.
SVN revision: 49743
2010-06-18 14:45:42 +00:00
Gustavo Sverzut Barbieri ddb8c95fa9 SVN_REPO_PATH envvar during autoconf to use svnversion in there.
Some systems, like the Gentoo, copy the svn contents somewhere before
doing the autoconf, this may result in lack of .svn and thus minor
version "0".

This patch introduces the $SVN_REPO_PATH to say where the svn checkout
containing the ".svn" directory is.



SVN revision: 49594
2010-06-09 18:22:47 +00:00
Carsten Haitzler 1520bad01b restore after snap/release
SVN revision: 49540
2010-06-06 17:43:03 +00:00
Carsten Haitzler dbc0e46c87 Snapshot embryo
SVN revision: 49534
2010-06-06 17:26:47 +00:00
Carsten Haitzler f0eee2d260 post-snap anr release.. reset svn back.. this time for real.
SVN revision: 49526
2010-06-06 17:17:52 +00:00
Carsten Haitzler bcfe06f4b3 Snapshot embryo
SVN revision: 49517
2010-06-06 16:42:40 +00:00
Carsten Haitzler 25ff64e960 post release - move relname to pre-svn again.
SVN revision: 49506
2010-06-06 16:23:16 +00:00
Carsten Haitzler d30c6205e9 Snapshot embryo
SVN revision: 49498
2010-06-06 16:08:06 +00:00
Carsten Haitzler c4ea029772 larger block size for native call array
SVN revision: 49443
2010-06-04 06:09:15 +00:00
Carsten Haitzler a4769c42cb change svnversion shell goop to nuke sed and just use tr to delete
unwanted goop.



SVN revision: 49429
2010-06-04 01:04:24 +00:00
Iván Briano 6600f0c43f Let git-svn users get the right revision number to be used as version.
SVN revision: 49407
2010-06-03 07:40:54 +00:00
Carsten Haitzler f1e19253e6 nopw svn revision works again.
SVN revision: 49344
2010-05-31 03:12:45 +00:00
Carsten Haitzler 17dfab359b fix - if no svn tree, then it will pretend to be a release.
SVN revision: 49343
2010-05-31 01:59:22 +00:00
Carsten Haitzler a14cd60f77 add version info to embryo
SVN revision: 49275
2010-05-29 06:40:07 +00:00
Rui Seabra a13c11beaf Apply the same fix MEJ did ( http://marc.info/?l=enlightenment-svn&m=127157420508183&w=3 ) to more specs
SVN revision: 48213
2010-04-21 20:55:23 +00:00
Vincent Torri 7bd971f3ae include Evil.h for vc++
SVN revision: 47528
2010-03-28 08:43:53 +00:00
Vincent Torri dbb9cf4df7 add guards around the inclusion of config.h
SVN revision: 47527
2010-03-28 08:36:55 +00:00
Vincent Torri 75fcc4a51d use efl_fnmatch m4 macro
SVN revision: 45854
2010-02-03 21:01:02 +00:00
Vincent Torri 9aec8f6722 fix warnings on 64 bits arch
patch by Albin Tonerre, modified by me so that vc++ is happy


SVN revision: 45428
2010-01-22 06:37:19 +00:00
Sebastian Dransfeld 604892a3c4 make clang happy
SVN revision: 45192
2010-01-15 19:44:25 +00:00
Vincent Torri 3790685a4c binary can be disabled
SVN revision: 45169
2010-01-15 06:06:33 +00:00
Vincent Torri 190d1aea83 fix PATH_MAX detection
SVN revision: 45071
2010-01-12 22:44:25 +00:00
Cedric BAIL 41b0fb73a0 * embryo: Prevent use of unitialized data.
SVN revision: 44547
2009-12-18 17:40:13 +00:00