This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| README.EXT | 10 ++++---- | |
| README.EXT.ja | 2 +- | |
| bignum.c | 2 +- | |
| compar.c | 2 +- | |
| compile.c | 4 +- | |
| doc/ChangeLog-1.8.0 | 2 +- | |
| doc/ChangeLog-1.9.3 | 4 +- | |
| eval.c | 10 ++++---- | |
| ext/bigdecimal/bigdecimal.c | 24 ++++++++++---------- | |
| ext/bigdecimal/bigdecimal.h | 2 +- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 119 (Christian Brabandt) | |
| 109 (ZyX) | |
| 56 (Yasuhiro Matsumoto) | |
| 52 (Dominique Pelle) | |
| 47 (Ken Takata) | |
| 31 (Mike Williams) | |
| 30 (Lech Lorens) | |
| 27 (Yukihiro Nakadaira) | |
| 23 (Taro Muraoka) | |
| 12 (James Vega) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt | |
| --- a/runtime/doc/eval.txt | |
| +++ b/runtime/doc/eval.txt | |
| @@ -4883,7 +4883,7 @@ | |
| *rmdir()* | |
| rmdir({dname} [, {flags}]) | |
| Remove a directory {dname}. Return 0 for success, otherwise | |
| - return non-zero value. If the direcotry contains any files or | |
| + return non-zero value. If the directory contains any files or | |
| sub-directories, this function will fail, when no {flags} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| iconv -f EUC-JP -t CP932 testc.c | sed -e 's/EUC_JP/SJIS/g' | unix2dos > testc.c.win32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/autoload/vimproc.vim b/autoload/vimproc.vim | |
| index 4c3b836..4fd3ca4 100644 | |
| --- a/autoload/vimproc.vim | |
| +++ b/autoload/vimproc.vim | |
| @@ -185,7 +185,7 @@ function! vimproc#get_command_name(command, ...) "{{{ | |
| let cnt = a:0 < 2 ? 1 : a:2 | |
| let files = split(substitute(vimproc#util#substitute_path_separator( | |
| - \ vimproc#filepath#which(a:command, path)), '//', '/', 'g'), '\n') | |
| + \ vimproc#filepath#which(a:command, path, cnt)), '//', '/', 'g'), '\n') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HG changeset patch | |
| # Parent 7723e7290ac81885c1f59d9dfdb1538469732ba0 | |
| diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim | |
| --- a/runtime/autoload/netrw.vim | |
| +++ b/runtime/autoload/netrw.vim | |
| @@ -3502,7 +3502,7 @@ | |
| setl ma noro | |
| " call Decho("setl ma noro") | |
| let b:netrw_curdir = dirname | |
| - let url = s:method."://".s:user.s:machine.(s:port ? ":".s:port : "")."/".s:path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/plugin/editorconfig-core-py/editorconfig/ini.py | |
| +++ b/plugin/editorconfig-core-py/editorconfig/ini.py | |
| @@ -17,10 +17,10 @@ import re | |
| from codecs import open | |
| import posixpath | |
| from os import sep | |
| -from os.path import normcase, dirname | |
| +from os.path import dirname | |
| from editorconfig.exceptions import ParsingError |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/autoload/vimproc.vim | |
| +++ b/autoload/vimproc.vim | |
| @@ -857,10 +857,10 @@ function! s:read(...) dict "{{{ | |
| let timeout = get(a:000, 1, s:read_timeout) | |
| let max = 100 | |
| - let hd = '' | |
| + let hds = [] | |
| for cnt in range(1, max) | |
| let [hd_r, eof] = self.f_read(number, timeout/max) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let lines = readfile('vim/runtime/doc/eval.txt') | |
| echo len(lines) . " lines" | |
| " ---------------------------- | |
| " 1. Simplest string concatenation (.=) | |
| let stime = reltime() | |
| let line = '' | |
| for l in lines | |
| let line .= l | |
| endfor |