1
0
forked from aniani/vim

Commit Graph

  • bbd9fd7353 updated for version 7.3.384 Problem: Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary completion. Solution: Add CTRL-K to the list of recognized keys. (James McCoy) v7.3.384 Bram Moolenaar 2011-12-23 13:15:03 +01:00
  • 265116a99a updated for version 7.3.383 Problem: For EBCDIC pound sign is defined as 't'. Solution: Correctly define POUND. v7.3.383 Bram Moolenaar 2011-12-23 12:47:03 +01:00
  • 213ae48854 updated for version 7.3.382 Problem: IME characters are inserted twice. Solution: Do not call DefWindowProc() if the event was handled. (Yasuhiro Matsumoto) v7.3.382 Bram Moolenaar 2011-12-15 21:51:36 +01:00
  • f1568eca24 Update runtime files. Bram Moolenaar 2011-12-14 21:17:39 +01:00
  • f788a06103 updated for version 7.3.381 Problem: Configure silently skips interfaces that won't work. Solution: Add the --enable-fail_if_missing argument. (Shlomi Fish) v7.3.381 Bram Moolenaar 2011-12-14 20:51:25 +01:00
  • c367faad99 updated for version 7.3.380 Problem: C-indenting wrong for a function header. Solution: Skip to the start paren. (Lech Lorens) v7.3.380 Bram Moolenaar 2011-12-14 20:21:35 +01:00
  • a528565cf1 updated for version 7.3.379 Problem: C-indenting wrong for static enum. Solution: Skip over "static". (Lech Lorens) v7.3.379 Bram Moolenaar 2011-12-14 20:05:21 +01:00
  • 323cb95120 updated for version 7.3.378 Problem: When cross-compiling the check for uint32_t fails. Solution: Only give a warning message. (Maksim Melnikau) v7.3.378 Bram Moolenaar 2011-12-14 19:22:34 +01:00
  • d6e256c31a updated for version 7.3.377 Problem: No support for bitwise AND, OR, XOR and invert. Solution: Add add(), or(), invert() and xor() functions. v7.3.377 Bram Moolenaar 2011-12-14 15:32:50 +01:00
  • 2787ab91b0 updated for version 7.3.376 Problem: Win32: Toolbar repainting does not work when the mouse pointer hovers over a button. Solution: Call DefWindowProc() when not hanlding an event. (Sergiu Dotenco) v7.3.376 Bram Moolenaar 2011-12-14 15:23:59 +01:00
  • 68dfcdf725 updated for version 7.3.375 Problem: Duplicate return statement. Solution: Remove the superfluous one. (Dominique Pelle) v7.3.375 Bram Moolenaar 2011-12-14 15:07:29 +01:00
  • b38e9ab4af updated for version 7.3.374 Problem: ++encoding does not work properly. Solution: Recognize ++encoding before ++enc. (Charles Cooper) v7.3.374 Bram Moolenaar 2011-12-14 14:49:45 +01:00
  • 08fc756582 updated for version 7.3.373 Problem: A tags file with an extremely long name may cause an infinite loop. Solution: When encountering a long name switch to linear search. v7.3.373 Bram Moolenaar 2011-12-14 14:15:16 +01:00
  • 96a8964564 updated for version 7.3.372 Problem: When using a command line mapping to <Up> with file name completion to go one directory up, 'wildchar' is inserted. (Yasuhiro Matsumoto) Solution: Set the KeyTyped flag. v7.3.372 Bram Moolenaar 2011-12-08 18:44:51 +01:00
  • b9ba403542 updated for version 7.3.371 Problem: Crash in autocomplete. (Greg Weber) Solution: Check not going over allocated buffer size. v7.3.371 Bram Moolenaar 2011-12-08 17:49:35 +01:00
  • fa263a517b updated for version 7.3.370 Problem: Compiler warns for unused variable in Lua interface. Solution: Remove the variable. v7.3.370 Bram Moolenaar 2011-12-08 16:00:16 +01:00
  • f4120a8964 updated for version 7.3.369 Problem: When compiled with Gnome get an error message when using --help. Solution: Don't fork. (Ivan Krasilnikov) v7.3.369 Bram Moolenaar 2011-12-08 15:57:59 +01:00
  • aeabe0545d updated for version 7.3.368 Problem: Gcc complains about redefining _FORTIFY_SOURCE. Solution: Undefine it before redefining it. v7.3.368 Bram Moolenaar 2011-12-08 15:17:34 +01:00
  • ae7ba984ee updated for version 7.3.367 Problem: :wundo and :rundo use a wrong checksum. Solution: Include the last line when computing the hash. (Christian Brabandt) v7.3.367 Bram Moolenaar 2011-12-08 15:14:09 +01:00
  • 0a11f8ce4e updated for version 7.3.366 Problem: A tags file with an extremely long name causes errors. Solution: Ignore tags that are too long. (Arno Renevier) v7.3.366 Bram Moolenaar 2011-12-08 15:12:11 +01:00
  • f0b6b0cc3b updated for version 7.3.365 Problem: Crash when using a large Unicode character in a file that has syntax highlighting. (ngollan) Solution: Check for going past the end of the utf tables. (Dominique Pelle) v7.3.365 Bram Moolenaar 2011-12-08 15:09:52 +01:00
  • 2bbafdbcee updated for version 7.3.364 Problem: Can't compile on HP-UX. (John Marriott) Solution: Only use TTYM_URXVT when it is defined. v7.3.364 Bram Moolenaar 2011-12-01 20:59:21 +01:00
  • 3388bb4847 updated for version 7.3.363 Problem: C indenting is wrong after #endif followed by a semicolon. Solution: Add special handling for a semicolon in a line by itself. (Lech Lorens) v7.3.363 Bram Moolenaar 2011-11-30 17:20:23 +01:00
  • 0612ec8d53 updated for version 7.3.362 Problem: ml_get error when using ":g" with folded lines. Solution: Adjust the line number for changed_lines(). (Christian Brabandt) v7.3.362 Bram Moolenaar 2011-11-30 17:01:58 +01:00
  • 89c7122c05 updated for version 7.3.361 Problem: Accessing memory after it is freed when EXITFREE is defined. Solution: Don't access curwin when firstwin is NULL. (Dominique Pelle) v7.3.361 Bram Moolenaar 2011-11-30 15:40:56 +01:00
  • 8000baffa7 updated for version 7.3.360 Problem: Interrupting the load of an autoload function may cause a crash. Solution: Do not use the hashitem when not valid. (Yukihiro Nakadaira) v7.3.360 Bram Moolenaar 2011-11-30 15:19:28 +01:00
  • 195ea0ff6c updated for version 7.3.359 Problem: Command line completion shows dict functions. Solution: Skip dict functions for completion. (Yasuhiro Matsumoto) v7.3.359 Bram Moolenaar 2011-11-30 14:57:31 +01:00
  • b491c03ee7 updated for version 7.3.358 Problem: Mouse support doesn't work properly. Solution: Add HMT_URXVT. (lilydjwg, James McCoy) v7.3.358 Bram Moolenaar 2011-11-30 14:47:15 +01:00
  • 26fdd7da96 updated for version 7.3.357 Problem: Compiler warning in MS-Windows console build. Solution: Adjust return type of PrintHookProc(). (Mike Williams) v7.3.357 Bram Moolenaar 2011-11-30 13:42:44 +01:00
  • 6d8f9c6f59 updated for version 7.3.356 Problem: Using "o" with 'cindent' set may freeze Vim. (lolilolicon) Solution: Skip over {} correctly. (Hari G) v7.3.356 Bram Moolenaar 2011-11-30 13:03:28 +01:00
  • 49e4ec6eee updated for version 7.3.355 Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov) Solution: Do not remove the beval event handler twice. v7.3.355 Bram Moolenaar 2011-11-30 11:31:30 +01:00
  • 4e5ccfa5c7 updated for version 7.3.354 Problem: ":set backspace+=eol" doesn't work when 'backspace' has a backwards compatible value of 2. Solution: Convert the number to a string. (Hirohito Higashi) v7.3.354 Bram Moolenaar 2011-11-30 11:15:47 +01:00
  • 1dff76bcb8 updated for version 7.3.353 Problem: Missing part of the urxvt patch. Solution: Add the change in term.c v7.3.353 Bram Moolenaar 2011-10-26 23:48:20 +02:00
  • db710ed999 updated for version 7.3.352 Problem: When completing methods dict functions and script-local functions get in the way. Solution: Sort function names starting with "<" to the end. (Yasuhiro Matsumoto) v7.3.352 Bram Moolenaar 2011-10-26 22:02:15 +02:00
  • a27ad5aea1 updated for version 7.3.351 Problem: Text formatting uses start of insert position when it should not. (Peter Wagenaar) Solution: Do not use Insstart when intentionally formatting. v7.3.351 Bram Moolenaar 2011-10-26 17:04:29 +02:00
  • 50bfb3278e updated for version 7.3.350 Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert) Solution: Recognize the ":lua" command, skip to EOF. v7.3.350 Bram Moolenaar 2011-10-26 13:19:27 +02:00
  • f541c36a8c updated for version 7.3.349 Problem: When running out of memory during startup trying to open a swapfile will loop forever. Solution: Let findswapname() set dirp to NULL if out of memory. v7.3.349 Bram Moolenaar 2011-10-26 11:44:18 +02:00
  • 79739e163b updated for version 7.3.348 Problem: "call range(1, 947948399)" causes a crash. (ZyX) Solution: Avoid a loop in the out of memory message. v7.3.348 Bram Moolenaar 2011-10-26 11:41:00 +02:00
  • b931d74b06 updated for version 7.3.347 Problem: When dropping text from a browser on Vim it receives HTML even though "html" is excluded from 'clipboard'. (Andrei Avk) Solution: Fix the condition for TARGET_HTML. v7.3.347 Bram Moolenaar 2011-10-26 11:36:25 +02:00
  • 1514667a24 Updated runtime files. Bram Moolenaar 2011-10-20 22:22:38 +02:00
  • e3cc6d4223 updated for version 7.3.346 Problem: It's hard to test netbeans commands. Solution: Process netbeans commands after :sleep. (Xavier de Gaye) v7.3.346 Bram Moolenaar 2011-10-20 21:58:34 +02:00
  • 6cc00c75c1 updated for version 7.3.345 v7.3.345 Bram Moolenaar 2011-10-20 21:41:09 +02:00
  • cd6fe97e6b updated for version 7.3.344 Problem: Problem with GUI startup related to XInitThreads. Solution: Use read() and write() instead of fputs() and fread(). (James Vega) v7.3.344 Bram Moolenaar 2011-10-20 21:28:01 +02:00
  • c842748302 updated for version 7.3.343 Problem: No mouse support for urxvt. Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding Jia) v7.3.343 Bram Moolenaar 2011-10-20 21:09:35 +02:00
  • 62dbdc4a5a updated for version 7.3.342 Problem: Code not in Vim style. Solution: Fix the style. (Elias Diem) v7.3.342 Bram Moolenaar 2011-10-20 18:24:22 +02:00
  • 667b4d2db9 updated for version 7.3.341 Problem: Local help files are only listed in help.txt, not in translated help files. Solution: Also find translated help files. (Yasuhiro Matsumoto) v7.3.341 Bram Moolenaar 2011-10-20 18:17:42 +02:00
  • f34dc6537d updated for version 7.3.340 Problem: When 'verbosefile' is set ftplugof.vim can give an error. Solution: Only remove filetypeplugin autocommands when they exist. (Yasuhiro Matsumoto) v7.3.340 Bram Moolenaar 2011-10-20 18:12:32 +02:00
  • a4594f6b82 updated for version 7.3.339 Problem: "make shadow" doesn't link all test files. Solution: Add a line in Makefile and Filelist. v7.3.339 Bram Moolenaar 2011-10-20 16:35:35 +02:00
  • b3479bd229 updated for version 7.3.338 Problem: Using getchar() in an expression mapping doesn't work well. Solution: Don't save and restore the typeahead. (James Vega) v7.3.338 Bram Moolenaar 2011-10-12 22:02:14 +02:00
  • 2e7b1df8fa updated for version 7.3.337 Problem: Screen doesn't update after resizing the xterm until a character is typed. Solution: When the select call is interrupted check do_resize. (Taylor Hedberg) v7.3.337 Bram Moolenaar 2011-10-12 21:04:20 +02:00
  • e06461a821 updated for version 7.3.336 Problem: When a tags file specifies an encoding different from 'enc' it may hang and using a pattern doesn't work. Solution: Convert the whole line. Continue reading the header after the SORT tag. Add test83. (Yukihiro Nakadaira) v7.3.336 Bram Moolenaar 2011-10-12 19:53:52 +02:00
  • 725a962194 updated for version 7.3.335 Problem: When 'imdisable' is reset from an autocommand in Insert mode it doesn't take effect. Solution: Call im_set_active() in Insert mode. (Taro Muraoka) v7.3.335 Bram Moolenaar 2011-10-12 16:57:13 +02:00
  • 08c51aabc4 updated for version 7.3.334 Problem: Latest MingW about XSUBPP referencing itself. (Gongqian Li) Solution: Rename the first use to XSUBPPTRY. v7.3.334 Bram Moolenaar 2011-10-12 14:11:45 +02:00
  • ca0c9fcda0 updated for version 7.3.333 Problem: Using "." to repeat a Visual delete counts the size in bytes, not characters. (Connor Lane Smith) Solution: Store the virtual column numbers instead of byte positions. v7.3.333 Bram Moolenaar 2011-10-04 21:22:44 +02:00
  • e79d1535cf updated for version 7.3.332 Problem: Indent after "public:" is not increased in C++ code. (Lech Lorens) Solution: Check for namespace after the regular checks. (partly by Martin Gieseking) v7.3.332 Bram Moolenaar 2011-10-04 18:03:47 +02:00
  • aa0e80471f updated for version 7.3.331 Problem: "vit" selects wrong text when a tag name starts with the same text as an outer tag name. (Ben Fritz) Solution: Add "\>" to the pattern to check for word boundary. v7.3.331 Bram Moolenaar 2011-10-04 17:00:20 +02:00
  • 7701c24e36 updated for version 7.3.330 Problem: When longjmp() is invoked if the X server gives an error the state is not properly restored. Solution: Reset vgetc_busy. (Yukihiro Nakadaira) v7.3.330 Bram Moolenaar 2011-10-04 16:43:53 +02:00
  • 946c1eeafc Add files aaded by patch 7.3.326. Bram Moolenaar 2011-10-03 22:12:32 +02:00
  • 250912918e updated for version 7.3.329 Problem: When skipping over code from ":for" to ":endfor" get an error for calling a dict function. (Yasuhiro Matsumoto) Solution: Ignore errors when skipping over :call command. v7.3.329 Bram Moolenaar 2011-09-30 18:35:57 +02:00
  • 73dc59aad8 updated for version 7.3.328 Problem: When command line wraps the cursor may be displayed wrong when there are multi-byte characters. Solution: Position the cursor before drawing the text. (Yasuhiro Matsumoto) v7.3.328 Bram Moolenaar 2011-09-30 17:46:21 +02:00
  • 8f535582ad updated for version 7.3.327 Problem: When jumping to a help tag a closed fold doesn't open. Solution: Save and restore KeyTyped. (Yasuhiro Matsumoto) v7.3.327 Bram Moolenaar 2011-09-30 17:30:31 +02:00
  • 2369e35b39 updated for version 7.3.326 Problem: MingW 4.6 no longer supports the -mno-cygwin option. Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo) v7.3.326 Bram Moolenaar 2011-09-30 16:56:02 +02:00
  • acd6a049f6 updated for version 7.3.325 Problem: A duplicated function argument gives an internal error. Solution: Give a proper error message. (based on patch by Tyru) v7.3.325 Bram Moolenaar 2011-09-30 16:39:48 +02:00
  • a627c96182 updated for version 7.3.324 Problem: Completion for ":compiler" shows color scheme names. Solution: Fix the directory name. (James Vega) v7.3.324 Bram Moolenaar 2011-09-30 16:23:32 +02:00
  • 98a22f4a63 updated for version 7.3.323 Problem: The default 'errorformat' does not ignore some "included from" lines. Solution: Add a few more patterns. (Ben Boeckel) v7.3.323 Bram Moolenaar 2011-09-30 14:44:54 +02:00
  • 9f733d1ffd updated for version 7.3.322 Problem: #ifdef for PDP_RETVAL doesn't work, INT_PTR can be a typedef. Solution: Check the MSC version and 64 bit flags. (Sergiu Dotenco) v7.3.322 Bram Moolenaar 2011-09-21 20:09:42 +02:00
  • 447038a127 updated for version 7.3.321 Problem: Code not following Vim style. Solution: Fix the style. (Elias Diem) v7.3.321 Bram Moolenaar 2011-09-21 19:50:05 +02:00
  • d960d76d5e Updated a few runtime files. Bram Moolenaar 2011-09-21 19:22:10 +02:00
  • a6f4d61af7 updated for version 7.3.320 Problem: When a 0xa0 character is in a sourced file the error message for unrecognized command does not show the problem. Solution: Display 0xa0 as <a0>. v7.3.320 Bram Moolenaar 2011-09-21 19:10:46 +02:00
  • 62951b1e0d updated for version 7.3.319 Problem: Redobuff doesn't always include changes of the completion leader. Solution: Insert backspaces as needed. (idea by Taro Muraoka) v7.3.319 Bram Moolenaar 2011-09-21 18:23:05 +02:00
  • a554a1933c updated for version 7.3.318 Problem: "C" on the last line deletes that line if it's blank. Solution: Only delete the last line for a delete operation. (James Vega) v7.3.318 Bram Moolenaar 2011-09-21 17:33:53 +02:00
  • 38e2b0636b updated for version 7.3.317 Problem: Calling debug.debug() in Lua may cause Vim to hang. Solution: Add a better debug method. (Rob Hoelz, Luis Carvalho) v7.3.317 Bram Moolenaar 2011-09-21 17:15:39 +02:00
  • 50f834dfb2 updated for version 7.3.316 Problem: Crash when 'colorcolumn' is set and closing buffer. Solution: Check for w_buffer to be NULL. (Yasuhiro Matsumoto) v7.3.316 Bram Moolenaar 2011-09-21 13:40:17 +02:00
  • 7f78bd73d6 updated for version 7.3.315 Problem: Opening a window before forking causes problems for GTK. Solution: Fork first, create the window in the child and report back to the parent process whether it worked. If successful the parent exits, if unsuccessful the child exits and the parent continues in the terminal. (Tim Starling) v7.3.315 Bram Moolenaar 2011-09-14 19:04:39 +02:00
  • 52f8317926 updated for version 7.3.314 Problem: Missing parenthesis. Solution: Add it. (Benjamin R. Haskell) v7.3.314 Bram Moolenaar 2011-09-14 19:01:42 +02:00
  • 314ed4b21a updated for version 7.3.313 Problem: One more warning when compiling with dynamic Python 3. Solution: Change PySliceObject to PyObject. v7.3.313 Bram Moolenaar 2011-09-14 18:59:39 +02:00
  • 5302d9ebc1 Updated runtime files. Bram Moolenaar 2011-09-14 17:55:08 +02:00
  • ddab33232a updated for version 7.3.312 Problem: Can't compile with tiny features. Solution: Add #ifdef around win_valid(). v7.3.312 Bram Moolenaar 2011-09-14 17:50:14 +02:00
  • 821390843b updated for version 7.3.311 Problem: Complete function isn't called when the leader changed. Solution: Allow the complete function to return a dictionary with a flag that indicates ins_compl_restart() is to be called when the leader changes. (Taro Muraoka) v7.3.311 Bram Moolenaar 2011-09-14 16:52:09 +02:00
  • 15d6319b9d updated for version 7.3.310 Problem: Code not following Vim style. Solution: Fix the style. (Elias Diem) v7.3.310 Bram Moolenaar 2011-09-14 16:05:15 +02:00
  • 9e8edf6ee6 updated for version 7.3.309 Problem: Warnings for pointer types. Solution: Change PySliceObject to PyObject. v7.3.309 Bram Moolenaar 2011-09-14 15:41:58 +02:00
  • b5b5b895f7 updated for version 7.3.308 Problem: Writing to 'verbosefile' has problems, e.g. for :highlight. Solution: Do not use a separate verbose_write() function but write with the same code that does redirecting. (Yasuhiro Matsumoto) v7.3.308 Bram Moolenaar 2011-09-14 15:39:29 +02:00
  • ba4897e6e5 updated for version 7.3.307 Problem: Python 3 doesn't support slice assignment. Solution: Implement slices. (Brett Overesch, Roland Puntaier) v7.3.307 Bram Moolenaar 2011-09-14 15:01:58 +02:00
  • a971b82b16 updated for version 7.3.306 Problem: When closing a window there is a chance that deleting a scrollbar triggers a GUI resize, which uses the window while it is not in a valid state. Solution: Set the buffer pointer to NULL to be able to detect the invalid situation. Fix a few places that used the buffer pointer incorrectly. v7.3.306 Bram Moolenaar 2011-09-14 14:43:25 +02:00
  • 52af96527c updated for version 7.3.305 Problem: Auto-loading a function while editing the command line causes scrolling up the display. Solution: Don't set msg_scroll when defining a function and the user is not typing. (Yasuhiro Matsumoto) v7.3.305 Bram Moolenaar 2011-09-14 14:33:51 +02:00
  • 612af43cb6 updated for version 7.3.304 Problem: Strawberry Perl doesn't work on MS-Windows. Solution: Use xsubpp if needed. (Yasuhiro Matsumoto) v7.3.304 Bram Moolenaar 2011-09-14 10:49:46 +02:00
  • 9f1188152f updated for version 7.3.303 Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall) v7.3.303 Bram Moolenaar 2011-09-08 23:24:14 +02:00
  • 868272f58e updated for version 7.3.302 Problem: Test 19 fails without 'smartindent' and +eval. Solution: Don't use ":exe". Source small.vim. v7.3.302 Bram Moolenaar 2011-09-08 23:22:40 +02:00
  • c42e7ed777 updated for version 7.3.301 Problem: When 'smartindent' and 'copyindent' are set a Tab is used even though 'expandtab' is set. Solution: Do not insert Tabs. Add a test. (Christian Brabandt) v7.3.301 Bram Moolenaar 2011-09-07 19:58:09 +02:00
  • 275648066d updated for version 7.3.300 Problem: Python doesn't parse multi-byte argument correctly. Solution: Use "t" instead of "s". (lilydjwg) v7.3.300 Bram Moolenaar 2011-09-07 19:30:21 +02:00
  • 0d55ff1594 updated for version 7.3.299 Problem: Source code not in Vim style. Solution: Adjust the style. (Elias Diem) v7.3.299 Bram Moolenaar 2011-09-07 19:09:01 +02:00
  • 092e3c874f updated for version 7.3.298 Problem: Built-in colors are different from rgb.txt. Solution: Adjust the color values. (Benjamin Haskell) v7.3.298 Bram Moolenaar 2011-09-07 18:58:29 +02:00
  • 6dfff547a7 updated for version 7.3.297 Problem: Can't load Perl 5.14 dynamically. Solution: Add code in #ifdefs. (Charles Cooper) v7.3.297 Bram Moolenaar 2011-09-07 18:47:23 +02:00
  • 205b886a41 updated for version 7.3.296 Problem: When writing to an external command a zombie process may be left behind. Solution: Wait on the process. (James Vega) v7.3.296 Bram Moolenaar 2011-09-07 15:04:31 +02:00
  • 493c7a8541 updated for version 7.3.295 Problem: When filtering text with an external command Vim may not read all the output. Solution: When select() is interrupted loop and try again. (James Vega) v7.3.295 Bram Moolenaar 2011-09-07 14:06:47 +02:00
  • 01a78342e0 updated for version 7.3.294 Problem: Patch 289 causes more problems than it solves. Solution: Rever the patch untill a better solution is found. v7.3.294 Bram Moolenaar 2011-09-05 20:13:42 +02:00
  • d3184b57d2 updated for version 7.3.293 Problem: MSVC compiler has a problem with non-ASCII characters. Solution: Avoid non-ASCII characters. (Hong Xu) v7.3.293 Bram Moolenaar 2011-09-02 14:18:20 +02:00
  • 6c167c6451 updated for version 7.3.292 Problem: Crash when using fold markers and selecting a visual block that includes a folded line and goes to end of line. (Sam Lidder) Solution: Check for the column to be MAXCOL. (James Vega) v7.3.292 Bram Moolenaar 2011-09-02 14:07:36 +02:00
  • 6fabcbe260 updated for version 7.3.291 Problem: Configure doesn't work properly with Python3. Solution: Put -ldl before $LDFLAGS. Add PY3_NO_RTLD_GLOBAL. (Roland Puntaier) v7.3.291 Bram Moolenaar 2011-09-02 12:27:25 +02:00
  • 39fc42ef9d updated for version 7.3.290 Problem: When a BufWriteCmd autocommand resets 'modified' this doesn't change older buffer states to be marked as 'modified' like ":write" does. (Yukihiro Nakadaira) Solution: When the BufWriteCmd resets 'modified' then adjust the undo information like ":write" does. v7.3.290 Bram Moolenaar 2011-09-02 11:56:20 +02:00