summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Close unused branch 'vim72'vim72Bram Moolenaar2015-08-180-0/+0
|
* Mark this revision the (end of the) Vim 7.2 branch.Bram Moolenaar2010-08-160-0/+0
|
* updated for version 7.2.446v7.2.446Bram Moolenaar2010-07-122-5/+11
| | | | | Problem: Crash in GUI when closing the last window in a tabpage. (ryo7000) Solution: Remove the tabpage from the list before freeing the window.
* updated for version 7.2.445v7.2.445v7-2-445Bram Moolenaar2010-07-073-6/+49
| | | | | | Problem: Crash when using undo/redo and a FileChangedRO autocmd event that reloads the buffer. (Dominique Pelle) Solution: Do not allow autocommands while performing and undo or redo.
* updated for version 7.2.444v7.2.444v7-2-444Bram Moolenaar2010-06-133-2/+6
| | | | | | Problem: Can't build with GTK 1, gtk_selection_clear_targets() is not available. (Patrick Texier) Solution: Don't change the targets for GTK 1, set them once.
* updated for version 7.2.443v7.2.443Bram Moolenaar2010-06-124-3/+17
| | | | | | Problem: Using taglist() on a tag file with duplicate fields generates an internal error. (Peter Odding) Solution: Check for duplicate field names.
* updated for version 7.2.442v7.2.442Bram Moolenaar2010-06-054-20/+81
| | | | | | Problem: Copy/paste with OpenOffice doesn't work. Solution: Do not offer the HTML target when it is not supported. (James Vega)
* updated for version 7.2.441v7.2.441Bram Moolenaar2010-05-302-7/+9
| | | | | Problem: When using ":earlier" undo information may be wrong. Solution: When changing alternate branches also adjust b_u_oldhead.
* updated for version 7.2.440v7.2.440Bram Moolenaar2010-05-284-8/+20
| | | | | | Problem: Calling a function through a funcref, where the function deletes the funcref, leads to an invalid memory access. Solution: Make a copy of the function name. (Lech Lorens)
* updated for version 7.2.439v7.2.439Bram Moolenaar2010-05-282-3/+11
| | | | | | | Problem: Invalid memory access when doing thesaurus completion and 'infercase' is set. Solution: Use the minimal length of completed word and replacement. (Dominique Pelle)
* updated for version 7.2.438v7.2.438Bram Moolenaar2010-05-252-1/+10
| | | | | Problem: "vim -r" crashes. Solution: Don't use NULL pointer argument.
* updated for version 7.2.437v7.2.437Bram Moolenaar2010-05-212-0/+9
| | | | | | Problem: When "\\\n" appears in the expression result the \n doesn't result in a line break. (Andy Wokula) Solution: Also replace a \n after a backslash into \r.
* updated for version 7.2.436v7.2.436Bram Moolenaar2010-05-162-4/+6
| | | | | Problem: Reproducible crash in syntax HL. (George Reilly, Dominique Pelle) Solution: Make sst_stacksize an int instead of short. (Dominique Pelle)
* updated for version 7.2.435v7.2.435v7-2-435Bram Moolenaar2010-05-164-9/+14
| | | | | Problem: Crash when using bad_char_idx uninitialized. (Patrick Texier) Solution: Don't use bad_char_idx, reproduce the ++bad argument from bad_char.
* updated for version 7.2.434v7.2.434v7-2-434Bram Moolenaar2010-05-162-0/+8
| | | | | Problem: Compilation fails without the multi-lang feature. Solution: Add #ifdefs. (Johm Marriott)
* Undo changes that are meant for the Vim 7.3 branch.Bram Moolenaar2010-05-15177-3377/+10202
|
* After recovery check if the text changed. If it did mark the buffer asBram Moolenaar2010-05-156-45/+114
| | | | modified.
* Get rid of the "extra" and "lang" archives.Bram Moolenaar2010-05-153-73/+37
|
* Switched from autoconf 2.63 to 2.65.Bram Moolenaar2010-05-152-8940/+2806
|
* Small fix for compiler warning in Netbeans.Bram Moolenaar2010-05-151-1/+1
|
* First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar2010-05-15171-1145/+421
|
* Correct Japanese menus to avoid error while loading them after 7.2.432.Bram Moolenaar2010-05-153-60/+60
|
* Updated runtime files.Bram Moolenaar2010-05-1480-2286/+5680
|
* updated for version 7.2.433v7.2.433v7-2-433Bram Moolenaar2010-05-143-56/+75
| | | | | Problem: Can't use cscope with QuickFixCmdPre and QuickFixCmdPost. Solution: Add cscope support for these autocmd events. (Bryan Venteicher)
* updated for version 7.2.432v7.2.432v7-2-432Bram Moolenaar2010-05-143-69/+164
| | | | | | | Problem: When menus are translated they can only be found by the translated name. That makes ":emenu" difficult to use. Solution: Store the untranslated name and use it for completion and :emenu. (Edward L. Fox / Liang Peng / Bezetek James)
* updated for version 7.2.431v7.2.431v7-2-431Bram Moolenaar2010-05-142-4/+15
| | | | | Problem: ":amenu" moves the cursor when in Insert mode. Solution: Use CTRL-\ CTRL-O instead of CTRL-O. (Christian Brabandt)
* updated for version 7.2.430v7.2.430v7-2-430Bram Moolenaar2010-05-144-7/+10
| | | | | | | Problem: The ++bad argument is handled wrong, resulting in an invalid memory access. Solution: Use the bad_char field only for the replacement character, add bad_char_idx to store the position. (Dominique Pelle)
* updated for version 7.2.429v7.2.429v7-2-429Bram Moolenaar2010-05-142-1/+10
| | | | | | | Problem: A file that exists but access is denied may result in a "new file" message. E.g. when its directory is unreadable. Solution: Specifically check for ENOENT to decide a file doesn't exist. (partly by James Vega)
* updated for version 7.2.428v7.2.428v7-2-428Bram Moolenaar2010-05-142-1/+7
| | | | | Problem: Using setqflist([]) to clear the error list doesn't work properly. Solution: Set qf_nonevalid to TRUE when appropriate. (Christian Brabandt)
* updated for version 7.2.427v7.2.427v7-2-427Bram Moolenaar2010-05-142-15/+23
| | | | | | Problem: The swapfile is created using the destination of a symlink, but recovery doesn't follow symlinks. Solution: When recovering, resolve symlinks. (James Vega)
* updated for version 7.2.426v7.2.426v7-2-426Bram Moolenaar2010-05-142-17/+23
| | | | | Problem: Commas in 'langmap' are not always handled correctly. Solution: Require commas to be backslash escaped. (James Vega)
* updated for version 7.2.425v7.2.425v7-2-425Bram Moolenaar2010-05-142-1/+3
| | | | | Problem: Some compilers complain about fourth EX() argument. Solution: Add cast to long_u.
* updated for version 7.2.424v7.2.424v7-2-424Bram Moolenaar2010-05-143-2/+28
| | | | | | Problem: ":colorscheme" without an argument doesn't do anything. Solution: Make it echo the current color scheme name. (partly by Christian Brabandt)
* updated for version 7.2.423v7.2.423v7-2-423Bram Moolenaar2010-05-142-11/+18
| | | | | | Problem: Crash when assigning s: to variable. (Yukihiro Nakadaira) Solution: Make ga_scripts contain pointer to scriptvar_T instead of scriptvar_T itself. (Dominique Pelle)
* updated for version 7.2.422v7.2.422v7-2-422Bram Moolenaar2010-05-132-2/+10
| | | | | | Problem: May get E763 when using spell dictionaries. Solution: Avoid utf-8 case folded character to be truncated to 8 bits and differ from latin1. (Dominique Pelle)
* updated for version 7.2.421v7.2.421v7-2-421Bram Moolenaar2010-05-132-2/+6
| | | | | | | Problem: Folds are sometimes not updated properly and there is no way to force an update. Solution: Make "zx" and "zX" recompute folds (suggested by Christian Brabandt)
* updated for version 7.2.420v7.2.420v7-2-420Bram Moolenaar2010-05-132-2/+4
| | | | | | Problem: ":argedit" does not accept "++enc=utf8" as documented. (Dominique Pelle) Solution: Add the ARGOPT flag to ":argedit".
* updated for version 7.2.419v7.2.419v7-2-419Bram Moolenaar2010-05-132-0/+3
| | | | | Problem: Memory leak in Motif when clicking on "Search Vim Help". Solution: Free string returned by XmTextGetString(). (Dominique Pelle)
* updated for version 7.2.418v7.2.418v7-2-418Bram Moolenaar2010-05-132-12/+20
| | | | | | | Problem: Vim tries to set the background or foreground color in a terminal to -1. (Graywh) Happens with ":hi Normal ctermbg=NONE". Solution: When resetting the foreground or background color don't set the color, let the clear screen code do that.
* updated for version 7.2.417v7.2.417v7-2-417Bram Moolenaar2010-05-132-0/+25
| | | | | | Problem: When 'shell' has an argument with a slash then 'shellpipe' is not set properly. (Britton Kerin) Solution: Assume there are no spaces in the path, arguments follow.
* updated for version 7.2.416v7.2.416v7-2-416Bram Moolenaar2010-05-072-2/+4
| | | | | Problem: Logtalk.dict is not installed. Solution: Add it to the install target. (Markus Heidelberg)
* updated for version 7.2.415v7.2.415v7-2-415Bram Moolenaar2010-05-072-2/+4
| | | | | Problem: Win32: Can't open a remote file when starting Vim. Solution: Don't invoke cygwin_conv_path() for URLs. (Tomoya Adachi)
* updated for version 7.2.414v7.2.414v7-2-414Bram Moolenaar2010-05-072-39/+4
| | | | | | | Problem: CTRK-K <space> <space> does not produce 0xa0 as expected. (Tony Mechelynck) Solution: Remove the Unicode range 0xe000 - 0xefff from digraphs, these are not valid characters.
* updated for version 7.2.413v7.2.413v7-2-413Bram Moolenaar2010-05-074-0/+370
| | | | | Problem: Large file support is incorrect. Solution: Add AC_SYS_LARGEFILE to configure. (James Vega)
* updated for version 7.2.412v7.2.412v7-2-412Bram Moolenaar2010-05-072-3/+5
| | | | | Problem: [ or ] followed by mouse click doesn't work. Solution: Reverse check for key being a mouse event. (Dominique Pelle)
* updated for version 7.2.411v7.2.411v7-2-411Bram Moolenaar2010-03-232-0/+4
| | | | | Problem: When parsing 'cino' a comma isn't skipped properly. Solution: Skip the comma. (Lech Lorens)
* updated for version 7.2.410v7.2.410v7-2-410Bram Moolenaar2010-03-232-5/+21
| | | | | | Problem: Highlighting directories for completion doesn't work properly. Solution: Don't halve backslashes when not needed, expaned "~/". (Dominique Pelle)
* updated for version 7.2.409v7.2.409v7-2-409Bram Moolenaar2010-03-232-2/+4
| | | | | | Problem: Summary of number of substitutes is incorrect for ":folddo". (Jean Johner) Solution: Reset sub_nsubs and sub_nlines in global_exe().
* updated for version 7.2.408v7.2.408v7-2-408Bram Moolenaar2010-03-232-1/+5
| | | | | | Problem: With ":g/the/s/foo/bar/" the '[ and '] marks can be set to a line that was not changed. Solution: Only set '[ and '] marks when a substitution was done.
* updated for version 7.2.407v7.2.407v7-2-407Bram Moolenaar2010-03-232-0/+17
| | | | | | Problem: When using an expression in ":s" backslashes in the result are dropped. (Sergey Goldgaber, Christian Brabandt) Solution: Double backslashes.