Commit Graph

31 Commits

Author SHA1 Message Date
albertodemichelis
8471ad1aea Merge branch 'master' of https://github.com/albertodemichelis/squirrel 2017-04-23 04:01:16 +08:00
Paul
aa4afc5b14 Allow disable of CMake install() sections 2017-03-27 21:08:56 +01:00
Paul
d130dc5471 Add DISABLE_DYNAMIC to disable building shared libs for the case where you only want static libs. 2017-02-25 14:40:47 +00:00
albertodemichelis
be35cf850b -fixed _set method in userdata deelegates
-fixed some warnings
-sq_gettypetag doesn't set last error(it's treated as SQBool function but keeps a SQRESULT for backward compatibility)
2017-01-02 18:21:41 +08:00
Sandu Liviu Catalin
795af921cc Never assume the format is actually a string.
The invoker should at least know that the value he specified is not of the correct type.
2016-11-16 10:47:29 +02:00
Markus F.X.J. Oberhumer
eeba56c81b Normalize whitespace.
Convert source files to Unix EOL mode, convert .bat files to DOS EOL
mode, de-tabify and strip trailing whitespace.
2016-08-19 13:40:31 +02:00
zeromus
e0f0e180a3 add a printf function to the string stdlib, so we can avoid having to write print(format( all the time. it should be a little more lean than writing that function in lua yourself (can work entirely from scratchpad this way). 2016-05-12 11:48:52 -05:00
zeromus
b589ea521d deterministically handle error in incomplete regexp escape sequence 2016-04-23 20:29:04 -05:00
zeromus
160184d2dd Revert "add some stack-condition error checking to sqstdlib registration routines"
This reverts part of commit b9fc931752.
2016-04-22 22:29:22 -05:00
zeromus
b9fc931752 add some stack-condition error checking to sqstdlib registration routines and to sqstd_dofile 2016-04-20 21:19:24 -05:00
zeromus
175139968a error message fix: Unrecognozed ecoding 2016-04-14 18:28:56 -05:00
Fabian Wolff
14ac45d285 Fix minor spelling mistakes 2016-04-03 17:48:40 +02:00
Fabian Wolff
ba57d3b592 Add option to disable static targets 2016-03-17 12:44:03 +01:00
Fabian Wolff
89b5c519af Improve Linux build 2016-03-16 00:01:16 +01:00
Fabian Wolff
2592e50f83 Implement more flexible installation 2016-03-13 14:36:10 +01:00
Fabian Wolff
dc4eb2ad3e Fix DLL installation with MSVC 2016-03-08 14:48:19 +01:00
Fabian Wolff
d9ce07f065 Merge branch master 2016-03-08 13:59:33 +01:00
albertodemichelis
3090721fc6 solved annoying clang warning 2016-03-07 23:57:01 +08:00
Fabian Wolff
2fb3522470 Various improvements 2016-03-06 19:43:57 +01:00
Markus F.X.J. Oberhumer
6dee69057e Silence all -Wunused-parameter warnings. 2016-03-06 16:15:13 +01:00
Markus F.X.J. Oberhumer
bf2c28b0ce Silence all -Wmissing-field-initializer warnings. 2016-03-06 16:04:32 +01:00
Markus F.X.J. Oberhumer
026671b3d5 Silence some pedantic compilation warnings. 2016-03-06 15:49:46 +01:00
albertodemichelis
b115b84dd1 escape() fix for different SQChar sizes 2016-03-06 22:00:17 +08:00
albertodemichelis
737ea798a8 added \u and \U escape sequence for UTF8,UTF16 or UCS4 characters
the escape character \x is based on sizeof(SQChar)
2016-03-05 19:29:14 +08:00
Markus F.X.J. Oberhumer
ec36322140 Improve const-correctness.
This avoids some pedantic compiler warnings and also removes any
non-shared data from the squirrel core.

Before:

  size --totals sqstdlib/*.o squirrel/*.o
     text    data     bss     dec     hex filename
   261270    3776       0  265046   40b56 (TOTALS)

After:

  size --totals sqstdlib/*.o squirrel/*.o
     text    data     bss     dec     hex filename
   265046       0       0  265046   40b56 (TOTALS)
2016-02-22 22:15:31 +01:00
Markus F.X.J. Oberhumer
0378c7016f Normalize whitespace.
Convert files to Unix EOL mode, de-tabify and strip trailing whitespace.
2016-02-15 20:51:20 +01:00
M1cha
0568675561 switch to CMake build system 2016-02-02 23:25:37 +01:00
Peter Hartley
00f7a65aae Dont allow regexping off the end of a string 2016-01-24 01:15:08 +08:00
mingodad
85e82ea746 Remove set of unused variables.
Add a new matching rule \m that behaves similar to lua %b, it matches a balanced open and close characters ex:
\m() <- will match a balanced pair of ( and )
\m{} <- will match a balanced pair of { and }
See lua %b for more info.
Also include a nut file as example.
2016-01-18 20:32:38 +00:00
mingodad
ff7704fa46 Remove double call to an already saved value. 2016-01-18 18:16:56 +00:00
albertodemichelis
85dfe4b676 first commit 2015-12-22 03:14:21 +08:00