1
0
forked from aniani/vim

Commit Graph

  • 164c60f5b1 updated for version 7.3.103 Problem: Changing 'fileformat' and then using ":w" in an empty file sets the 'modified' option. Solution: In unchanged() don't ignore 'ff' for an empty file. v7.3.103 Bram Moolenaar 2011-01-22 00:11:50 +01:00
  • d2c340a6a6 updated for version 7.3.102 Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command. v7.3.102 Bram Moolenaar 2011-01-17 20:08:11 +01:00
  • e279335752 updated for version 7.3.101 Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas) v7.3.101 Bram Moolenaar 2011-01-17 19:53:27 +01:00
  • 48ac02c9eb updated for version 7.3.100 Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE. v7.3.100 Bram Moolenaar 2011-01-17 19:50:06 +01:00
  • 2a8a3ecb67 Updated runtime files. Bram Moolenaar 2011-01-08 16:06:37 +01:00
  • 13d831ff0c updated for version 7.3.099 Problem: Crash when splitting a window with zero height. (Yukihiro Nakadaira) Solution: Don't set the fraction in a window with zero height. v7.3.099 Bram Moolenaar 2011-01-08 14:46:03 +01:00
  • fd0e75683f updated for version 7.3.098 Problem: Function that ignores error still causes called_emsg to be set. E.g. when expand() fails the status line is disabled. Solution: Move check for emsg_not_now() up. (James Vega) v7.3.098 Bram Moolenaar 2011-01-04 19:25:50 +01:00
  • 6d0efdaab5 updated for version 7.3.097 Problem: Using ":call" inside "if 0" does not see that a function returns a Dict and gives error for "." as string concatenation. Solution: Use eval0() to skip over the expression. (Yasuhiro Matsumoto) v7.3.097 Bram Moolenaar 2011-01-04 19:03:27 +01:00
  • 870b05c4c0 updated for version 7.3.096 Problem: "gvim -nb" is not interruptable. Leaking file descriptor on netbeans connection error. Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye) v7.3.096 Bram Moolenaar 2011-01-04 18:11:43 +01:00
  • d91f704b03 updated for version 7.3.095 Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev) v7.3.095 Bram Moolenaar 2011-01-04 17:49:32 +01:00
  • 7eb4652e74 updated for version 7.3.094 Problem: Using abs() requires type cast to int. Solution: Use labs() so that the value remains long. (Hong Xu) v7.3.094 Bram Moolenaar 2010-12-30 14:57:08 +01:00
  • b0d3f878a4 updated for version 7.3.093 Problem: New DLL dependencies in MingW with gcc 4.5.0. Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen) v7.3.093 Bram Moolenaar 2010-12-30 14:50:52 +01:00
  • 9980835c68 updated for version 7.3.092 Problem: Resizing the window when exiting. Solution: Don't resize when exiting. v7.3.092 Bram Moolenaar 2010-12-30 14:47:36 +01:00
  • 946ffd4606 updated for version 7.3.091 Problem: "vim -w foo" writes special key codes for removed escape sequences. (Josh Triplett) Solution: Don't write K_IGNORE codes. v7.3.091 Bram Moolenaar 2010-12-30 12:30:31 +01:00
  • 657ae0bddd updated for version 7.3.090 Problem: Wrong help text for Cscope. Solution: Adjust the help text for "t". (Dominique Pelle) v7.3.090 Bram Moolenaar 2010-12-30 11:41:09 +01:00
  • de1b092c77 updated for version 7.3.089 Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams) v7.3.089 Bram Moolenaar 2010-12-24 14:00:17 +01:00
  • 7a8ef14c69 updated for version 7.3.088 Problem: Ruby can't load Gems sometimes, may cause a crash. Solution: Undefine off_t. Use ruby_process_options(). (Yasuhiro Matsumoto) v7.3.088 Bram Moolenaar 2010-12-24 13:39:35 +01:00
  • b57aa92d2c updated for version 7.3.087 Problem: EINTR is not always defined. Solution: Include errno.h in vim.h. v7.3.087 Bram Moolenaar 2010-12-17 20:24:01 +01:00
  • f82a2d2e5f updated for version 7.3.086 Problem: When using a mapping with an expression and there was no count, v:count has the value of the previous command. (ZyX) Solution: Also set v:count and v:count1 before getting the character that could be a command or a count. v7.3.086 Bram Moolenaar 2010-12-17 18:53:01 +01:00
  • 9c26303293 updated for version 7.3.085 Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast. v7.3.085 Bram Moolenaar 2010-12-17 18:06:06 +01:00
  • 0215e8e15b updated for version 7.3.084 Problem: When splitting the window, the new one scrolls with the cursor at the top. Solution: Compute w_fraction before setting the new height. v7.3.084 Bram Moolenaar 2010-12-17 17:35:10 +01:00
  • 540fc6fbdb updated for version 7.3.083 Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr(). v7.3.083 Bram Moolenaar 2010-12-17 16:27:16 +01:00
  • 45d9d02d71 updated for version 7.3.082 Problem: Leaking file descriptor when hostname doesn't exist. Solution: Remove old debugging lines. v7.3.082 Bram Moolenaar 2010-12-17 12:19:21 +01:00
  • 81af9250a7 Update runtime files. Bram Moolenaar 2010-12-10 20:35:50 +01:00
  • 7c5676b5d6 updated for version 7.3.081 Problem: Non-printable characters in 'statusline' cause trouble. (ZyX) Solution: Use transstr(). (partly by Caio Ariede) v7.3.081 Bram Moolenaar 2010-12-08 19:56:58 +01:00
  • 56f7804065 updated for version 7.3.080 Problem: Spell doesn't work on VMS. Solution: Use different file names. (Zoltan Bartos, Zoltan Arpadffy) v7.3.080 Bram Moolenaar 2010-12-08 17:09:32 +01:00
  • 3d27070767 updated for version 7.3.079 Problem: Duplicate lines in makefile. Solution: Remove the lines. (Hong Xu) v7.3.079 Bram Moolenaar 2010-12-08 14:55:02 +01:00
  • 9c52c3a0a1 updated for version 7.3.078 Problem: Warning for unused variable. Solution: Adjuste #ifdefs. v7.3.078 Bram Moolenaar 2010-12-08 14:23:15 +01:00
  • 2e2e13ca14 updated for version 7.3.077 Problem: When updating crypt of swapfile fails there is no error message. (Carlo Teubner) Solution: Add the error message. v7.3.077 Bram Moolenaar 2010-12-08 13:17:03 +01:00
  • e980d8a934 updated for version 7.3.076 Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner) v7.3.076 Bram Moolenaar 2010-12-08 13:11:21 +01:00
  • 005c3c27ee updated for version 7.3.075 Problem: Missing part of 'wildignorecase' Solution: Also adjust expand() v7.3.075 Bram Moolenaar 2010-12-02 21:44:40 +01:00
  • bf9680e441 updated for version 7.3.074 Problem: Can't use the "+ register like "* for yank and put. Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov) v7.3.074 Bram Moolenaar 2010-12-02 21:43:16 +01:00
  • 863053d1d4 updated for version 7.3.073 Problem: Double free memory when netbeans command follows DETACH. Solution: Only free the node when owned. (Xavier de Gaye) v7.3.073 Bram Moolenaar 2010-12-02 17:09:54 +01:00
  • 94950a9ee0 updated for version 7.3.072 Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'. v7.3.072 Bram Moolenaar 2010-12-02 16:01:29 +01:00
  • 4161dccada updated for version 7.3.071 Problem: Editing a file in a window that's in diff mode resets 'diff' but not cursor binding. Solution: Reset cursor binding in two more places. v7.3.071 Bram Moolenaar 2010-12-02 15:33:21 +01:00
  • d4ddfafc2a updated for version 7.3.070 Problem: Can set environment variables in the sandbox, could be abused. Solution: Disallow it. v7.3.070 Bram Moolenaar 2010-12-02 14:48:14 +01:00
  • df6b11e955 updated for version 7.3.069 Problem: GTK: pressing Enter in inputdialog() doesn't work like clicking OK as documented. Solution: call gtk_entry_set_activates_default(). (Britton Kerin) v7.3.069 Bram Moolenaar 2010-11-24 18:48:12 +01:00
  • f666f0e5c0 updated for version 7.3.068 Problem: Using freed memory when doing ":saveas" and an autocommand sets 'autochdir'. (Kevin Klement) Solution: Get the value of fname again after executing autocommands. v7.3.068 Bram Moolenaar 2010-11-24 17:59:32 +01:00
  • ef2f028a66 updated for version 7.3.067 Problem: Ruby: Init_prelude is not always available. Solution: Remove use of Init_prelude. (Yasuhiro Matsumoto) v7.3.067 Bram Moolenaar 2010-11-24 17:03:38 +01:00
  • 0785ccf995 updated for version 7.3.066 Problem: Crash when changing to another window while in a :vimgrep command. (Christian Brabandt) Solution: When wiping out the dummy before, remove it from aucmd_win. v7.3.066 Bram Moolenaar 2010-11-24 16:32:05 +01:00
  • 4dbbff57ba updated for version 7.3.065 Problem: Can't get current line number in a source file. Solution: Add the <slnum> item, similar to <sfile>. v7.3.065 Bram Moolenaar 2010-11-24 15:50:59 +01:00
  • 0818b87cbf updated for version 7.3.064 Problem: Win32: ":dis +" shows nothing, but "+p does insert text. Solution: Display the * register, since that's what will be inserted. (Christian Brabandt) v7.3.064 Bram Moolenaar 2010-11-24 14:28:58 +01:00
  • 96e5ceed93 updated for version 7.3.063 Problem: Win32: Running a filter command makes Vim lose focus. Solution: Use SW_SHOWMINNOACTIVE instead of SW_SHOWMINIMIZED. (Hong Xu) v7.3.063 Bram Moolenaar 2010-11-24 12:35:21 +01:00
  • 166af9bb6f Updated runtime files. Bram Moolenaar 2010-11-16 20:34:40 +01:00
  • 644d37b84d updated for version 7.3.062 Problem: Python doesn't work properly when installed in another directory than expected. Solution: Figure out home directory in configure and use Py_SetPythonHome() at runtime. (Roland Puntaier) v7.3.062 Bram Moolenaar 2010-11-16 19:26:02 +01:00
  • 00b78c17b2 updated for version 7.3.061 Problem: Remote ":drop" does not respect 'autochdir'. (Peter Odding) Solution: Don't restore the directory when 'autochdir' is set. (Benjamin Fritz) v7.3.061 Bram Moolenaar 2010-11-16 16:25:51 +01:00
  • 7ad7d01074 updated for version 7.3.060 Problem: Netbeans: crash when socket is disconnected unexpectedly. Solution: Don't cleanup when a read fails, put a message in the queue and disconnect later. (Xavier de Gaye) v7.3.060 Bram Moolenaar 2010-11-16 15:49:02 +01:00
  • 03531f79c3 updated for version 7.3.059 Problem: Netbeans: Problem with recursively handling messages for Athena and Motif. Solution: Call netbeans_parse_messages() in the main loop, like it's done for GTK. (Xavier de Gaye) v7.3.059 Bram Moolenaar 2010-11-16 15:04:57 +01:00
  • 3c53160348 updated for version 7.3.058 Problem: Error "code converter not found" when loading Ruby script. Solution: Load Gem module. (Yasuhiro Matsumoto) v7.3.058 Bram Moolenaar 2010-11-16 14:46:19 +01:00
  • 66b4bf8980 updated for version 7.3.057 Problem: Segfault with command line abbreviation. (Randy Morris) Solution: Don't retrigger the abbreviation when abandoning the command line. Continue editing the command line after the error. v7.3.057 Bram Moolenaar 2010-11-16 14:06:08 +01:00
  • bf55e1442d updated for version 7.3.056 Problem: "getline" argument in do_cmdline() shadows global. Solution: Rename the argument. Files: src/ex_docmd.c v7.3.056 Bram Moolenaar 2010-11-16 11:32:01 +01:00
  • 67b3f99eb0 updated for version 7.3.055 Problem: Recursively nested lists and dictionaries cause a near-endless loop when comparing them with a copy. (ZyX) Solution: Limit recursiveness in a way that non-recursive structures can still be nested very deep. Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok v7.3.055 Bram Moolenaar 2010-11-10 20:41:57 +01:00
  • a3e7b1f42b updated for version 7.3.054 Problem: Can define a user command for :Print, but it doesn't work. (Aaron Thoma) Solution: Let user command :Print overrule the builtin command (Christian Brabandt) Disallow :X and :Next as a user defined command. v7.3.054 Bram Moolenaar 2010-11-10 19:00:01 +01:00
  • 2a8caa414e updated for version 7.3.053 Problem: complete() function doesn't reset complete direction. Can't use an empty string in the list of matches. Solution: Set compl_direction to FORWARD. Add "empty" key to allow empty words. (Kikuchan) v7.3.053 Bram Moolenaar 2010-11-10 17:11:33 +01:00
  • 37dd018cdd updated for version 7.3.052 Problem: When 'completefunc' opens a new window all kinds of errors follow. (Xavier Deguillard) Solution: When 'completefunc' goes to another window or buffer and when it deletes text abort completion. Add a test for 'completefunc'. v7.3.052 Bram Moolenaar 2010-11-10 16:54:20 +01:00
  • 27d9eceb66 updated for version 7.3.051 Problem: Crash when /home/mool/bin:/usr/local/sbin:/usr/local/bin:/home/mool/java/jdk/bin:/bin:/sbin:/usr/bin:/usr/games:/usr/sbin:/usr/X11R6/bin:/usr/local/linux-jdk1.3.1/bin:/usr/local/lib/python2.2/Tools/idle is empty. Solution: Check for vim_getenv() returning NULL. (Yasuhiro Matsumoto) v7.3.051 Bram Moolenaar 2010-11-10 15:37:05 +01:00
  • 22e193ddd5 updated for version 7.3.050 Problem: The link script is clumsy. Solution: Use the --as-needed linker option if available. (Kirill A. Shutemov) v7.3.050 Bram Moolenaar 2010-11-03 22:32:24 +01:00
  • 2d0860d06c updated for version 7.3.049 Problem: PLT has rebranded their Scheme to Racket. Solution: Add support for Racket 5.x. (Sergey Khorev) v7.3.049 Bram Moolenaar 2010-11-03 21:59:30 +01:00
  • dba01a0197 updated for version 7.3.048 Problem: ":earlier 1f" doesn't work after loading undo file. Solution: Set b_u_save_nr_cur when loading an undo file. (Christian Brabandt) Fix only showing time in ":undolist" v7.3.048 Bram Moolenaar 2010-11-03 19:32:42 +01:00
  • 16a6165bb3 updated for version 7.3.047 Problem: Missing makefile updates for test 75. Solution: Update the makefiles. v7.3.047 Bram Moolenaar 2010-10-27 18:36:36 +02:00
  • 0536570fa2 Updated runtile files. Bram Moolenaar 2010-10-27 18:34:44 +02:00
  • 2d73ff4500 updated for version 7.3.046 Problem: Can't build Ruby on MS-Windows. Solution: Add #ifdef, don't use WIN3264 before including vim.h. v7.3.046 Bram Moolenaar 2010-10-27 17:40:59 +02:00
  • b3ae56cf2b updated for version 7.3.045 Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable always. v7.3.045 Bram Moolenaar 2010-10-27 17:39:05 +02:00
  • ee236d0d19 updated for version 7.3.044 Problem: The preview window opened by the popup menu is larger than specified with 'previewheight'. (Benjamin Haskell) Solution: Use 'previewheight' if it's set and smaller. v7.3.044 Bram Moolenaar 2010-10-27 17:11:15 +02:00
  • 3ca71f1f1f updated for version 7.3.043 Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega) v7.3.043 Bram Moolenaar 2010-10-27 16:49:47 +02:00
  • beca055b0c updated for version 7.3.042 Problem: No spell highlighting when re-using an empty buffer. Solution: Clear the spell checking info only when clearing the options for a buffer. (James Vega) v7.3.042 Bram Moolenaar 2010-10-27 16:18:00 +02:00
  • 22df3f90fc updated for version 7.3.041 Problem: Compiler warning for accessing mediumVersion. (Tony Mechelynck) Solution: Use the pointer instead of the array itself. (Dominique Pelle) v7.3.041 Bram Moolenaar 2010-10-27 16:01:27 +02:00
  • c395a3aac2 updated for version 7.3.040 Problem: Comparing strings while ignoring case goes beyond end of the string when there are illegal bytes. (Dominique Pelle) Solution: Explicitly check for illegal bytes. v7.3.040 Bram Moolenaar 2010-10-27 13:37:44 +02:00
  • fc3c83e47e updated for version 7.3.039 Problem: Crash when using skk.vim plugin. Solution: Get length of expression evaluation result only after checking for NULL. (Noriaki Yagi, Dominique Pelle) v7.3.039 Bram Moolenaar 2010-10-27 12:58:23 +02:00
  • 264e9fd61b updated for version 7.3.038 Problem: v:windowid isn't set on MS-Windows. Solution: Set it to the window handle. (Chris Sutcliffe) v7.3.038 Bram Moolenaar 2010-10-27 12:33:17 +02:00
  • 6b5ef067a5 updated for version 7.3.037 Problem: Compiler warnings for loss of data. (Mike Williams) Solution: Add type casts. v7.3.037 Bram Moolenaar 2010-10-27 12:18:00 +02:00
  • 786989ba37 updated for version 7.3.036 Problem: Win32 GUI: When building without menus, the font for dialogs and tab page headers also changes. Solution: Define USE_SYSMENU_FONT always. (Harig G.) v7.3.036 Bram Moolenaar 2010-10-27 12:15:33 +02:00
  • 8bbe993c79 updated for version 7.3.035 Problem: Stray semicolon after if statement. (Hari G) Solution: Remove the semicolon. v7.3.035 Bram Moolenaar 2010-10-24 14:33:43 +02:00
  • ebbcb824ba updated for version 7.3.034 Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library. v7.3.034 Bram Moolenaar 2010-10-23 14:02:54 +02:00
  • b8e86705ca updated for version 7.3.033 Problem: Can't build without FEAT_LOCALMAP. Solution: Add an #ifdef. (John Marriott) v7.3.033 Bram Moolenaar 2010-10-22 22:13:52 +02:00
  • bd74325960 updated for version 7.3.032 Problem: maparg() doesn't return the flags, such as <buffer>, <script>, <silent>. These are needed to save and restore a mapping. Solution: Improve maparg(). (also by Christian Brabandt) v7.3.032 Bram Moolenaar 2010-10-20 21:23:33 +02:00
  • 727c876b78 updated for version 7.3.031 Problem: Can't pass the X window ID to another application. Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens) v7.3.031 Bram Moolenaar 2010-10-20 19:17:48 +02:00
  • 483c5d80a7 Updated runtime files and translations. Bram Moolenaar 2010-10-20 18:45:33 +02:00
  • 680eeca955 updated for version 7.3.030 Problem: Cannot store Dict and List in viminfo file. Solution: Add support for this. (Christian Brabandt) v7.3.030 Bram Moolenaar 2010-10-20 17:44:42 +02:00
  • f75d498844 updated for version 7.3.029 Problem: ":sort n" sorts lines without a number as number zero. (Beeyawned) Solution: Make lines without a number sort before lines with a number. Also fix sorting negative numbers. v7.3.029 Bram Moolenaar 2010-10-15 20:20:05 +02:00
  • b60574ba21 updated for version 7.3.028 Problem: Signs don't show up. (Charles Campbell) Solution: Don't use negative numbers. Also assign a number to signs that have a name of all digits to avoid using a sign number twice. v7.3.028 Bram Moolenaar 2010-10-14 21:29:37 +02:00
  • 464c92545a updated for version 7.3.027 Problem: Opening a file on a network share is very slow. Solution: When fixing file name case append "\*" to directory, server and network share names. (David Anderson, John Beckett) v7.3.027 Bram Moolenaar 2010-10-13 20:37:41 +02:00
  • 77a0aa457d updated for version 7.3.026 Problem: CTRL-] in a help file doesn't always work. (Tony Mechelynck) Solution: Don't escape special characters. (Carlo Teubner) v7.3.026 Bram Moolenaar 2010-10-13 18:06:47 +02:00
  • 78f74a91bf updated for version 7.3.025 Problem: ":mksession" does not square brackets escape file name properly. Solution: Improve escapging of file names. (partly by Peter Odding) v7.3.025 Bram Moolenaar 2010-10-13 17:50:07 +02:00
  • a4f332b44c updated for version 7.3.024 Problem: Named signs do not use a negative number as intended. Solution: Fix the numbering of named signs. (Xavier de Gaye) v7.3.024 Bram Moolenaar 2010-10-13 16:44:23 +02:00
  • 624891f3ef updated for version 7.3.023 Problem: External program may hang when it tries to write to the tty. Solution: Don't close the slave tty until after the child exits. (Nikola Knezevic) v7.3.023 Bram Moolenaar 2010-10-13 16:22:09 +02:00
  • d5784f9fc4 updated for version 7.3.022 Problem: When opening a new window the 'spellcapcheck' option is cleared. Solution: Copy the correct option value. (Christian Brabandt) v7.3.022 Bram Moolenaar 2010-10-13 14:05:35 +02:00
  • 423f97277d updated for version 7.3.021 Problem: Conflict for defining Boolean in Mac header files. Solution: Define NO_X11_INCLUDES. (Rainer Muller) v7.3.021 Bram Moolenaar 2010-10-10 17:08:43 +02:00
  • 341ad7a699 updated for version 7.3.020 Problem: Cursor position wrong when joining multiple lines and 'formatoptions' contains "a". (Moshe Kamensky) Solution: Adjust cursor position for skipped indent. (Carlo Teubner) v7.3.020 Bram Moolenaar 2010-10-09 17:23:31 +02:00
  • 4a74803ef8 Runtime file updates. Bram Moolenaar 2010-09-30 21:47:56 +02:00
  • c2a406b317 updated for version 7.3.019 Problem: ":nbstart" can fail silently. Solution: Give an error when netbeans is not supported by the GUI. (Xavier de Gaye) v7.3.019 Bram Moolenaar 2010-09-30 21:03:26 +02:00
  • d622beb3c3 updated for version 7.3.018 Problem: Missing argument to windres in MingW makefiles. Solution: Add the argument that was wrapped in the patch. (Jon Maken) v7.3.018 Bram Moolenaar 2010-09-29 18:42:28 +02:00
  • a8fc79895e updated for version 7.3.017 Problem: smatch reports errors. Solution: Fix the reported errors. (Dominique Pelle) v7.3.017 Bram Moolenaar 2010-09-29 18:32:52 +02:00
  • 173c98550f updated for version 7.3.016 Problem: Netbeans doesn't work under Athena. Solution: Support Athena, just like Motif. (Xavier de Gaye) v7.3.016 Bram Moolenaar 2010-09-29 17:27:01 +02:00
  • 3967692f9e updated for version 7.3.015 Problem: Test is using error message that no longer exists. Solution: Change E106 to E121. (Dominique Pelle) v7.3.015 Bram Moolenaar 2010-09-29 16:55:49 +02:00
  • 417f5e7f11 updated for version 7.3.014 Problem: Ending a line in a backslash inside an ":append" or ":insert" command in Ex mode doesn't work properly. (Ray Frush) Solution: Halve the number of backslashes, only insert a NUL after an odd number of backslashes. v7.3.014 Bram Moolenaar 2010-09-29 15:50:30 +02:00
  • f9b5ef8c88 updated for version 7.3.013 Problem: Dynamic loading with Ruby doesn't work for 1.9.2. Solution: Handle rb_str2cstr differently. Also support dynamic loading on Unix. (Jon Maken) v7.3.013 Bram Moolenaar 2010-09-29 13:02:53 +02:00
  • 3c9ab1c0e0 updated for version 7.3.012 Problem: Problems building with MingW. Solution: Adjust the MingW makefiles. (Jon) v7.3.012 Bram Moolenaar 2010-09-29 12:38:00 +02:00
  • 006590697c Updated runtime files. Bram Moolenaar 2010-09-21 22:34:02 +02:00
  • 62b42181fb updated for version 7.3.011 Problem: X11 clipboard doesn't work in Athena/Motif GUI. First selection after a shell command doesn't work. Solution: When using the GUI use XtLastTimestampProcessed() instead of changing a property. (partly by Toni Ronkko) When executing a shell command disown the selection. v7.3.011 Bram Moolenaar 2010-09-21 22:09:37 +02:00