summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-02-03patch 7.4.1255Bram Moolenaar
Problem: Crash for channel "eval" command without third argument. Solution: Check for missing argument.
2016-02-03patch 7.4.1254Bram Moolenaar
Problem: Opening a second channel causes a crash. (Ken Takata) Solution: Don't re-allocate the array with channels.
2016-02-03patch 7.4.1253Bram Moolenaar
Problem: Python test server not displaying second of two commands. Solaris doesn't have "pkill --full". Solution: Also echo the second command. Use "pkill -f".
2016-02-03patch 7.4.1252Bram Moolenaar
Problem: The channel test server may receive two messages concatenated. Solution: Split the messages.
2016-02-03patch 7.4.1251Bram Moolenaar
Problem: New test file missing from distribution. Solution: Add src/testdir/*.py.
2016-02-03patch 7.4.1250Bram Moolenaar
Problem: Running tests in shadow directory fails. Solution: Also link testdir/*.py
2016-02-03patch 7.4.1249Bram Moolenaar
Problem: Crash when the process a channel is connected to exits. Solution: Use the file descriptor properly. Add a test. (Damien) Also add a test for eval().
2016-02-03patch 7.4.1248Bram Moolenaar
Problem: Can't reliably stop the channel test server. Can't start the server if the python file is not executable. Solution: Use "pkill" instead of "killall". Run the python file as an argument instead of as an executable.
2016-02-03patch 7.4.1247Bram Moolenaar
Problem: The channel test doesn't run on MS-Windows. Solution: Make it work on the MS-Windows console. (Ken Takata)
2016-02-02Make the python script executable.Bram Moolenaar
2016-02-02patch 7.4.1246Bram Moolenaar
Problem: The channel functionality isn't tested. Solution: Add a test using a Python test server.
2016-02-02patch 7.4.1245Bram Moolenaar
Problem: File missing from distribution. Solution: Add json_test.c.
2016-02-02patch 7.4.1244Bram Moolenaar
Problem: The channel functions don't sort together. Solution: Use a common "ch_" prefix.
2016-02-02patch 7.4.1243Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (Elias Diem)
2016-02-02patch 7.4.1242Bram Moolenaar
Problem: json_test fails without the eval feature. Solution: Add #ifdef.
2016-02-02patch 7.4.1241Bram Moolenaar
Problem: Missing change in Makefile due to diff mismatch Solution: Update the list of object files.
2016-02-02patch 7.4.1240Bram Moolenaar
Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
2016-02-02patch 7.4.1239Bram Moolenaar
Problem: JSON message after the first one is dropped. Solution: Put remainder of message back in the queue.
2016-02-02patch 7.4.1238Bram Moolenaar
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.
2016-02-02patch 7.4.1237Bram Moolenaar
Problem: Can't translate message without adding a line break. Solution: Join the two parts of the message.
2016-02-01patch 7.4.1236Bram Moolenaar
Problem: When "syntax manual" was used switching between buffers removes the highlighting. Solution: Set the syntax option without changing the value. (Anton Lindqvist)
2016-02-01patch 7.4.1235Bram Moolenaar
Problem: Missing change to eval.c. Solution: Include that change.
2016-02-01Updated runtime files and translations.Bram Moolenaar
2016-02-01patch 7.4.1234Bram Moolenaar
Problem: Demo server only runs with Python 2. Solution: Make it run with Python 3 as well. (Ken Takata)
2016-02-01patch 7.4.1233Bram Moolenaar
Problem: Channel command may cause a crash. Solution: Check for NULL argument. (Damien)
2016-02-01patch 7.4.1232Bram Moolenaar
Problem: Compiler warnings when the Sniff feature is enabled. Solution: Add UNUSED.
2016-02-01patch 7.4.1231Bram Moolenaar
Problem: JSON messages are not parsed properly. Solution: Queue received messages.
2016-02-01patch 7.4.1230Bram Moolenaar
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)
2016-01-31patch 7.4.1229Bram Moolenaar
Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
2016-01-31patch 7.4.1228Bram Moolenaar
Problem: copy() and deepcopy() fail with special variables. (Nikolai Pavlov) Solution: Make it work. Add a test. Closes #614.
2016-01-31patch 7.4.1227Bram Moolenaar
Problem: Compiler warnings. Solution: Add UNUSED. Add type cast. (Yegappan Lakshmanan)
2016-01-31patch 7.4.1226Bram Moolenaar
Problem: GRESOURCE_HDR is unused. Solution: Remove it. (Kazunobu Kuriyama)
2016-01-31patch 7.4.1225Bram Moolenaar
Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
2016-01-31patch 7.4.1224Bram Moolenaar
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)
2016-01-31patch 7.4.1223Bram Moolenaar
Problem: Crash when setting v:errors to a number. Solution: Free the typval without assuming its type. (Yasuhiro Matsumoto)
2016-01-31patch 7.4.1222Bram Moolenaar
Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
2016-01-31patch 7.4.1221Bram Moolenaar
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.
2016-01-31patch 7.4.1220Bram Moolenaar
Problem: Warnings for unused variables in tiny build. (Tony Mechelynck) Solution: Move declarations inside #ifdef. (Hirohito Higashi)
2016-01-30patch 7.4.1219Bram Moolenaar
Problem: Build fails with +channel but without +float. Solution: Add #ifdef.
2016-01-30patch 7.4.1218Bram Moolenaar
Problem: Missing change in configure. More changes for function style. Solution: Avoid the typos.
2016-01-30patch 7.4.1217Bram Moolenaar
Problem: Execution of command on channel doesn't work yet. Solution: Implement the "ex" and "normal" commands.
2016-01-30patch 7.4.1216Bram Moolenaar
Problem: Still using HAVE_STDARG_H. Solution: Assume it's always defined.
2016-01-30patch 7.4.1215Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-30patch 7.4.1214Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-30patch 7.4.1213Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-30patch 7.4.1212Bram Moolenaar
Problem: Can't build with Motif. Solution: Fix function declaration.(Dominique Pelle)
2016-01-30patch 7.4.1211Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-30patch 7.4.1210Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-30patch 7.4.1209Bram Moolenaar
Problem: Can't build with Athena. Solution: Fix function declarations.
2016-01-30patch 7.4.1208Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)