summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1242v7.4.1242Bram Moolenaar2016-02-022-0/+6
| | | | | Problem: json_test fails without the eval feature. Solution: Add #ifdef.
* patch 7.4.1241v7.4.1241Bram Moolenaar2016-02-022-2/+10
| | | | | Problem: Missing change in Makefile due to diff mismatch Solution: Update the list of object files.
* patch 7.4.1240v7.4.1240Bram Moolenaar2016-02-024-3/+5
| | | | | Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
* patch 7.4.1239v7.4.1239Bram Moolenaar2016-02-022-9/+22
| | | | | Problem: JSON message after the first one is dropped. Solution: Put remainder of message back in the queue.
* patch 7.4.1238v7.4.1238Bram Moolenaar2016-02-029-138/+533
| | | | | | Problem: Can't handle two messages right after each other. Solution: Find the end of the JSON. Read more when incomplete. Add a C test for the JSON decoding.
* patch 7.4.1237v7.4.1237Bram Moolenaar2016-02-022-2/+3
| | | | | Problem: Can't translate message without adding a line break. Solution: Join the two parts of the message.
* patch 7.4.1236v7.4.1236Bram Moolenaar2016-02-012-5/+8
| | | | | | | Problem: When "syntax manual" was used switching between buffers removes the highlighting. Solution: Set the syntax option without changing the value. (Anton Lindqvist)
* patch 7.4.1235v7.4.1235Bram Moolenaar2016-02-012-14/+27
| | | | | Problem: Missing change to eval.c. Solution: Include that change.
* Updated runtime files and translations.Bram Moolenaar2016-02-0119-518/+936
|
* patch 7.4.1234v7.4.1234Bram Moolenaar2016-02-012-24/+36
| | | | | Problem: Demo server only runs with Python 2. Solution: Make it run with Python 3 as well. (Ken Takata)
* patch 7.4.1233v7.4.1233Bram Moolenaar2016-02-012-1/+5
| | | | | Problem: Channel command may cause a crash. Solution: Check for NULL argument. (Damien)
* patch 7.4.1232v7.4.1232Bram Moolenaar2016-02-012-3/+5
| | | | | Problem: Compiler warnings when the Sniff feature is enabled. Solution: Add UNUSED.
* patch 7.4.1231v7.4.1231Bram Moolenaar2016-02-017-181/+302
| | | | | Problem: JSON messages are not parsed properly. Solution: Queue received messages.
* patch 7.4.1230v7.4.1230Bram Moolenaar2016-02-012-2/+10
| | | | | | | Problem: Win32: opening a channel may hang. Not checking for messages while waiting for characters. Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro Matsumoto)
* patch 7.4.1229v7.4.1229Bram Moolenaar2016-01-319-78/+207
| | | | | Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
* patch 7.4.1228v7.4.1228Bram Moolenaar2016-01-313-0/+13
| | | | | | Problem: copy() and deepcopy() fail with special variables. (Nikolai Pavlov) Solution: Make it work. Add a test. Closes #614.
* patch 7.4.1227v7.4.1227Bram Moolenaar2016-01-313-3/+5
| | | | | Problem: Compiler warnings. Solution: Add UNUSED. Add type cast. (Yegappan Lakshmanan)
* patch 7.4.1226v7.4.1226Bram Moolenaar2016-01-314-6/+2
| | | | | Problem: GRESOURCE_HDR is unused. Solution: Remove it. (Kazunobu Kuriyama)
* patch 7.4.1225v7.4.1225Bram Moolenaar2016-01-3112-84/+66
| | | | | Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
* patch 7.4.1224v7.4.1224Bram Moolenaar2016-01-312-2/+6
| | | | | | Problem: Build problems with GTK on BSD. (Mike Williams) Solution: Don't use "$<". Skip building gui_gtk_gresources.h when it doesn't work. (Kazunobu Kuriyama)
* patch 7.4.1223v7.4.1223Bram Moolenaar2016-01-313-7/+19
| | | | | Problem: Crash when setting v:errors to a number. Solution: Free the typval without assuming its type. (Yasuhiro Matsumoto)
* patch 7.4.1222v7.4.1222Bram Moolenaar2016-01-3112-94/+12
| | | | | Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
* patch 7.4.1221v7.4.1221Bram Moolenaar2016-01-313-4/+42
| | | | | | | Problem: Including netbeans and channel support in small and tiny builds. Build fails with some interfaces. Solution: Only include these features in small build and above. Let configure fail if trying to enable an interface that won't build.
* patch 7.4.1220v7.4.1220Bram Moolenaar2016-01-312-7/+9
| | | | | Problem: Warnings for unused variables in tiny build. (Tony Mechelynck) Solution: Move declarations inside #ifdef. (Hirohito Higashi)
* patch 7.4.1219v7.4.1219Bram Moolenaar2016-01-302-1/+7
| | | | | Problem: Build fails with +channel but without +float. Solution: Add #ifdef.
* patch 7.4.1218v7.4.1218Bram Moolenaar2016-01-305-15/+25
| | | | | Problem: Missing change in configure. More changes for function style. Solution: Avoid the typos.
* patch 7.4.1217v7.4.1217Bram Moolenaar2016-01-308-68/+135
| | | | | Problem: Execution of command on channel doesn't work yet. Solution: Implement the "ex" and "normal" commands.
* patch 7.4.1216v7.4.1216Bram Moolenaar2016-01-3010-44/+22
| | | | | Problem: Still using HAVE_STDARG_H. Solution: Assume it's always defined.
* patch 7.4.1215v7.4.1215Bram Moolenaar2016-01-309-458/+324
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1214v7.4.1214Bram Moolenaar2016-01-3010-1889/+1260
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1213v7.4.1213Bram Moolenaar2016-01-3015-1363/+911
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1212v7.4.1212Bram Moolenaar2016-01-302-1/+3
| | | | | Problem: Can't build with Motif. Solution: Fix function declaration.(Dominique Pelle)
* patch 7.4.1211v7.4.1211Bram Moolenaar2016-01-308-1779/+1151
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1210v7.4.1210Bram Moolenaar2016-01-309-1111/+683
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1209v7.4.1209Bram Moolenaar2016-01-305-16/+25
| | | | | Problem: Can't build with Athena. Solution: Fix function declarations.
* patch 7.4.1208v7.4.1208Bram Moolenaar2016-01-3018-981/+687
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1207v7.4.1207Bram Moolenaar2016-01-3012-1373/+980
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1206v7.4.1206Bram Moolenaar2016-01-308-1674/+1101
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1205v7.4.1205Bram Moolenaar2016-01-3012-2908/+1712
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1204v7.4.1204Bram Moolenaar2016-01-302-1/+3
| | | | | Problem: Latin1 characters cause encoding conversion. Solution: Remove the characters.
* patch 7.4.1203v7.4.1203Bram Moolenaar2016-01-309-145/+167
| | | | | Problem: Still more files still using __ARGS. Solution: Remove __ARGS in really the last files.
* patch 7.4.1202v7.4.1202Bram Moolenaar2016-01-294-11/+15
| | | | | | Problem: Still one more file still using __ARGS. Solution: Remove __ARGS in the last file. (script by Hirohito Higashi) (closes #612)
* patch 7.4.1201v7.4.1201Bram Moolenaar2016-01-292-21/+23
| | | | | Problem: One more file still using __ARGS. Solution: Remove __ARGS in the last file. (script by Hirohito Higashi)
* patch 7.4.1200v7.4.1200Bram Moolenaar2016-01-2930-121/+97
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1199v7.4.1199Bram Moolenaar2016-01-2924-786/+788
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1198v7.4.1198Bram Moolenaar2016-01-2922-690/+560
| | | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) Also remove use of HAVE_STDARG_H.
* patch 7.4.1197v7.4.1197Bram Moolenaar2016-01-2914-315/+317
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1196v7.4.1196Bram Moolenaar2016-01-2911-348/+350
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1195v7.4.1195Bram Moolenaar2016-01-298-30/+53
| | | | | Problem: The channel feature does not work in the MS-Windows console. Solution: Add win32 console support. (Yasuhiro Matsumoto)
* patch 7.4.1194v7.4.1194Bram Moolenaar2016-01-283-5/+10
| | | | | Problem: Compiler warning for not using return value of fwrite(). Solution: Return OK/FAIL. (Charles Campbell)