Bram Moolenaar
8d2d71d4bb
updated for version 7.3.164
...
Problem: C-indenting: a preprocessor statement confuses detection of a
function delcaration.
Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style
to put a comma before the argument name.
v7.3.164
2011-04-28 13:02:09 +02:00
Bram Moolenaar
f1fda2d6e5
updated for version 7.3.163
...
Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not
recognized.
Solution: Recognize these shell names.
v7.3.163
2011-04-28 12:57:36 +02:00
Bram Moolenaar
e962388eac
updated for version 7.3.162
...
Problem: No error message when assigning to a list with an index out of
range. (Yukihiro Nakadaira)
Solution: Add the error message.
v7.3.162
2011-04-21 14:27:28 +02:00
Bram Moolenaar
d9462e394a
updated for version 7.3.161
...
Problem: Items on the stack may be too big.
Solution: Make items static or allocate them.
v7.3.161
2011-04-11 21:35:11 +02:00
Bram Moolenaar
ef9d6aa70d
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
v7.3.160
2011-04-11 16:56:35 +02:00
Bram Moolenaar
0d35e91abf
updated for version 7.3.159
...
Problem: Using uninitialized pointer when out of memory.
Solution: Check for NULL return value.
v7.3.159
2011-04-11 14:29:17 +02:00
Bram Moolenaar
4aa97427be
updated for version 7.3.158
...
Problem: Might use uninitialized memory in C indenting.
Solution: Init arrays to empty.
v7.3.158
2011-04-11 14:27:38 +02:00
Bram Moolenaar
367bec852e
updated for version 7.3.157
...
Problem: Superfluous assignment.
Solution: Remove assignment.
v7.3.157
2011-04-11 14:26:19 +02:00
Bram Moolenaar
639304ddb1
updated for version 7.3.156
...
Problem: Tty names possibly left unterminated.
Solution: Use vim_strncpy() instead of strncpy().
v7.3.156
2011-04-11 14:24:37 +02:00
Bram Moolenaar
32f649e1fc
updated for version 7.3.155
...
Problem: Crash when using map(), filter() and remove() on v:. (ZyX)
Also for extend(). (Yukihiro Nakadaira)
Solution: Mark v: as locked. Also correct locking error messages.
v7.3.155
2011-04-11 13:46:13 +02:00
Bram Moolenaar
2dfb38659c
updated for version 7.3.154
...
Problem: Can't compile with tiny features. (Tony Mechelynck)
Solution: Move #define outside of #ifdef.
v7.3.154
2011-04-02 15:12:50 +02:00
Bram Moolenaar
10d77eb6ac
updated for version 7.3.153
...
Problem: Compiler warning for ambiguous else, missing prototype.
Solution: Add braces. (Dominique Pelle) Add prototype for die().
v7.3.153
2011-04-02 14:44:55 +02:00
Bram Moolenaar
e0659a680c
updated for version 7.3.152
...
Problem: Xxd does not check for errors from library functions.
Solution: Add error checks. (Florian Zumbiehl)
v7.3.152
2011-04-01 19:14:40 +02:00
Bram Moolenaar
adc2182c40
Updated runtime files.
2011-04-01 18:03:16 +02:00
Bram Moolenaar
337ae06ff9
updated for version 7.3.151
...
Problem: When "unnamedplus" is in 'clipboard' the selection is sometimes
also copied to the star register.
Solution: Avoid copy to the star register when undesired. (James Vega)
v7.3.151
2011-04-01 16:28:38 +02:00
Bram Moolenaar
27b6056d85
updated for version 7.3.150
...
Problem: readline() does not return the last line when the NL is missing.
(Hong Xu)
Solution: When at the end of the file Also check for a previous line.
v7.3.150
2011-04-01 16:07:46 +02:00
Bram Moolenaar
96bcc5e6cd
updated for version 7.3.149
...
Problem: The cursor disappears after the processing of the 'setDot'
netbeans command when vim runs in a terminal.
Solution: Show the cursor after a screen update. (Xavier de Gaye, 2011
v7.3.149
2011-04-01 15:33:59 +02:00
Bram Moolenaar
42431a7aa0
updated for version 7.3.148
...
Problem: A syntax file with a huge number of items or clusters causes weird
behavior, a hang or a crash. (Yukihiro Nakadaira)
Solution: Check running out of IDs. (partly by Ben Schmidt)
v7.3.148
2011-04-01 14:44:59 +02:00
Bram Moolenaar
316dca03ca
updated for version 7.3.147
...
Problem: Can't build on HP-UX.
Solution: Remove an unnecessary backslash. (John Marriott)
v7.3.147
2011-04-01 13:05:45 +02:00
Bram Moolenaar
4228bec0ae
updated for version 7.3.146
...
Problem: It's possible to assign to a read-only member of a dict.
It's possible to create a global variable "0". (ZyX)
It's possible to add a v: variable with ":let v:.name = 1".
Solution: Add check for dict item being read-only.
Check the name of g: variables.
Disallow adding v: variables.
v7.3.146
2011-03-27 16:03:15 +02:00
Bram Moolenaar
30fec7bc7f
updated for version 7.3.145
...
Problem: Can't build with Python dynamically loading.
Solution: Add dll_PyType_Ready.
v7.3.145
2011-03-26 18:32:05 +01:00
Bram Moolenaar
21377c8d5f
updated for version 7.3.144
...
Problem: Crash with ":python help(dir)". (Kearn Holliday)
Solution: Fix the way the type is set on objects. (Tobias Columbus)
v7.3.144
2011-03-26 13:56:48 +01:00
Bram Moolenaar
b3c5284c5b
Add missing files for patch 7.3.143.
v7.3.143
2011-03-22 20:52:37 +01:00
Bram Moolenaar
b05b10a3c0
updated for version 7.3.143
...
Problem: Memfile is not tested sufficiently. Looking up blocks in a
memfile is slow when there are many blocks.
Solution: Add high level test and unittest. Adjust the number of hash
buckets to the number of blocks. (Ivan Krasilnikov)
2011-03-22 18:10:45 +01:00
Bram Moolenaar
cab49dff91
Updated runtime file. Fix Italian translations.
2011-03-22 17:40:10 +01:00
Bram Moolenaar
a29a37d533
updated for version 7.3.142
...
Problem: Python stdout doesn't have a flush() method, causing an import to
fail.
Solution: Add a dummy flush() method. (Tobias Columbus)
v7.3.142
2011-03-22 15:47:44 +01:00
Bram Moolenaar
0b2f94db23
updated for version 7.3.141
...
Problem: When a key code is not set get a confusing error message.
Solution: Change the error message to say the key code is not set.
v7.3.141
2011-03-22 14:35:05 +01:00
Bram Moolenaar
662db673f9
Updated runtime files.
2011-03-22 14:05:35 +01:00
Bram Moolenaar
e9d4b58dda
updated for version 7.3.140
...
Problem: Crash when drawing the "$" at end-of-line for list mode just after
the window border and 'cursorline' is set.
Solution: Don't check for 'cursorline'. (Quentin Carbonneaux)
v7.3.140
2011-03-22 13:29:24 +01:00
Bram Moolenaar
fd30cd41dc
updated for version 7.3.139
...
Problem: When 'lazyredraw' is set ":ver" output can't be read.
Solution: Don't redraw the screen when at a prompt or command line.
v7.3.139
2011-03-22 13:07:26 +01:00
Bram Moolenaar
f63c49d4e9
updated for version 7.3.138
...
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov)
Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
v7.3.138
2011-03-03 15:54:50 +01:00
Bram Moolenaar
6eb634ef1f
updated for version 7.3.137
...
Problem: When 'lazyredraw' is set the screen may not be updated. (Ivan
Krasilnikov)
Solution: Call update_screen() before waiting for input.
v7.3.137
2011-03-03 15:04:08 +01:00
Bram Moolenaar
ec737235c7
updated for version 7.3.136
...
Problem: Duplicate include of assert.h.
Solution: Remove it.
v7.3.136
2011-03-03 15:01:30 +01:00
Bram Moolenaar
b4b0a08c81
updated for version 7.3.135
...
Problem: When there is no previous substitute pattern, the previous search
pattern is used. The other way around doesn't work.
Solution: When there is no previous search pattern, use the previous
substitute pattern if possible. (Christian Brabandt)
v7.3.135
2011-02-25 18:38:36 +01:00
Bram Moolenaar
ba7cc9f83f
updated for version 7.3.134
...
Problem: Drag-n-drop doesn't work in KDE Dolphin.
Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
v7.3.134
2011-02-25 17:10:27 +01:00
Bram Moolenaar
4cf35c2fa4
updated for version 7.3.133
...
Problem: When using encryption it's not clear what method was used.
Solution: In the file message show "blowfish" when using blowfish.
v7.3.133
2011-02-25 16:52:17 +01:00
Bram Moolenaar
0c1f3f4d49
updated for version 7.3.132
...
Problem: C++ style comments.
Solution: Change to C comments.
v7.3.132
2011-02-25 15:18:50 +01:00
Bram Moolenaar
c725c0ad9b
updated for version 7.3.131
...
Problem: Including errno.h too often.
Solution: Don't include errno.h in Unix header file.
v7.3.131
2011-02-25 15:17:19 +01:00
Bram Moolenaar
ede547afcf
updated for version 7.3.130
...
Problem: Variable misplaced in #ifdef.
Solution: Move clipboard_event_time outside of #ifdef.
v7.3.130
2011-02-25 15:15:50 +01:00
Bram Moolenaar
128773b21d
updated for version 7.3.129
...
Problem: Using integer like a boolean.
Solution: Nicer check for integer being non-zero.
v7.3.129
2011-02-25 15:13:48 +01:00
Bram Moolenaar
e698addf88
updated for version 7.3.128
...
Problem: Another compiler warning for signed pointer.
Solution: Use unsigned int argument for sscanf().
v7.3.128
2011-02-25 15:11:22 +01:00
Bram Moolenaar
49789dc987
updated for version 7.3.127
...
Problem: Compiler complains about comma.
Solution: Remove comma after last enum element.
v7.3.127
2011-02-25 14:46:09 +01:00
Bram Moolenaar
2f70a34e2e
updated for version 7.3.126
...
Problem: Compiler warning for signed pointer.
Solution: Use unsigned int argument for sscanf().
v7.3.126
2011-02-25 14:42:45 +01:00
Bram Moolenaar
0065402f9a
Runtime file updates.
2011-02-25 14:42:19 +01:00
Bram Moolenaar
c30846f525
updated for version 7.3.125
...
Problem: MSVC: Problem with quotes in link argument.
Solution: Escape backslashes and quotes. (Weasley)
v7.3.125
2011-02-15 18:06:15 +01:00
Bram Moolenaar
cab35ad26d
updated for version 7.3.124
...
Problem: When writing a file in binary mode it may be missing the final EOL
if a file previously read was missing the EOL. (Kevin Goodsell)
Solution: Move the write_no_eol_lnum into the buffer struct.
v7.3.124
2011-02-15 17:39:22 +01:00
Bram Moolenaar
c2b4c62d0b
updated for version 7.3.123
...
Problem: ml_get error when executing register being recorded into, deleting
lines and 'conceallevel' is set. (ZyX)
Solution: Don't redraw a line for concealing when it doesn't exist.
v7.3.123
2011-02-15 16:29:59 +01:00
Bram Moolenaar
542512a3e5
updated for version 7.3.122
...
Problem: Having auto/config.mk in the repository causes problems.
Solution: Remove auto/config.mk from the distribution. In the toplevel
Makefile copy it from the "dist" file.
v7.3.122
2011-02-15 15:28:09 +01:00
Bram Moolenaar
b75d09d42b
updated for version 7.3.121
...
Problem: Complicated 'statusline' causes a crash. (Christian Brabandt)
Solution: Check that the number of items is not too big.
v7.3.121
2011-02-15 14:24:46 +01:00
Bram Moolenaar
c41fc713ba
updated for version 7.3.120
...
Problem: The message for an existing swap file is too long to fit in a 25
line terminal.
Solution: Make the message shorter. (Chad Miller)
v7.3.120
2011-02-15 11:57:04 +01:00