aph
4c4880b69f
remove MB_{IS,TO}{UPPER,LOWER}
2014-04-04 21:44:58 -03:00
aph
535c450c72
remove DO_AUTOCHDIR
2014-04-04 21:44:58 -03:00
Markus Breitenberger
94013a73f7
Remove unused define
2014-04-04 21:22:00 -03:00
Stefan Hoffmann
092bdcac90
Removed not defined prototypes in os_unix.h
...
* reset_signals, vim_handle_signal:
signal handling was rewritten, not defined anywhere
* related to x clipboard handling, not defined anywhere:
* {setup,start,stop,clear}_xterm_clip
* stop_xterm_trace
* clip_xterm_{own_selection,lose_selection,request_selection,set_selection}
* related to XSMP (x session management protocol):
* xsmp_{handle_requests,init,close}
2014-04-04 19:09:01 -03:00
oni-link
04cdcfa604
vim-patch:7.4.170
...
Problem: Some help tags don't work with ":help". (Tim Chase)
Solution: Add exceptions.
https://code.google.com/p/vim/source/detail?r=8122eab8fcdbbdaac62dfbf7c6458cb3e6f46b04
2014-04-04 19:08:21 -03:00
Wilberto Morales
0f9ca8d7fa
Possible string literals that have to be replaced
2014-04-04 16:39:49 -03:00
Wilberto Morales
8943a13d9b
Try to find all other instances of vimrc and gvimrc and prefix them with n
2014-04-04 16:39:49 -03:00
John Schmidt
6f53cb1cc3
Extract memory.c from misc2.c
2014-04-04 16:33:12 -03:00
Keerthan Jaic
3fe0580a8e
vim-patch:7.4.169
...
Problem: ":sleep" puts cursor in the wrong column. (Liang Li)
Solution: Add the window offset. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=4e3a9dd25d428e7c08ed401afc244972e27e08e6
2014-04-04 16:05:12 -03:00
Hinidu
b83600f5a3
Restore vim_rename
2014-04-04 16:03:55 -03:00
Hinidu
a3ff83ce7e
Replace mch_rename and vim_rename with libuv
2014-04-04 16:03:55 -03:00
Jared L Wong
86b6f1ccff
Changed testdir/Makefile to use Makefile wildcards instead of SUFFIXES
2014-04-04 06:54:23 -04:00
Eliseo Martínez
ad48e7c648
Fix #451 : Build broken on OSX.
...
Problem: Build breaks in OSX if macports ncurses present, due to
header conflict involving 'term.h'.
Solution: Modify include search order.
2014-04-03 21:00:43 +02:00
Thiago de Arruda
d9914a038a
Remove mch_call_shell
GUI printing code
...
This isn't needed right now because spawned shells will inherit stdout by
default
2014-04-03 12:08:26 -03:00
Thiago de Arruda
3fcff30d9a
Remove :shell
and suspend_shell
...
Issue #450 contains more details
2014-04-03 12:06:50 -03:00
Thiago de Arruda
b336eb46f0
Remove support for running interactive programs
...
This removes `mch_call_shell` code for feeding programs interactively. The
removed code was supporting interactive programs in the old GUI, but right now
we only have a terminal UI.
The code is currently safe to remove because interactive programs will just
simply take control of the terminal in cooked mode.
2014-04-03 11:59:27 -03:00
Thomas Wienecke
bfa4490aac
Rename FPC_* constants.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
c454030478
Initialize on declaration; use postincrements.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
865e3280a8
Fix seperator->separator, path_tail_with_separator->path_tail_with_sep.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
955d6a2949
Test and refactor getnextcomp -> path_next_component.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
7021b970b9
Test and refactor gettail_sep -> path_tail_with_seperator.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
77bfb6cd99
Test and refactor gettail -> path_tail.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
6d712defa5
Refactor fullpathcmp -> path_full_compare.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
81237af70e
Add os_stat to os/fs module.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
df78edbc92
Move gettail_dir more closely to its usage.
2014-04-03 10:32:41 -03:00
Thomas Wienecke
98b1f73c3f
Make FPC_* defines an enum type in path.h.
2014-04-03 10:32:41 -03:00
Stefan Hoffmann
db92e0b094
added doxygen documentation for os_file_is_{readonly, writable}
2014-04-03 10:30:03 -03:00
Stefan Hoffmann
fa2b327e9a
cleaned up the readonly check in readfile()
2014-04-03 10:30:03 -03:00
Stefan Hoffmann
5a2c9e123e
remove mch_access macro as it is only used in fs.c
2014-04-03 10:30:03 -03:00
Stefan Hoffmann
f762a9e195
move filewritable() into /src/os/fs.c and rename it
2014-04-03 10:30:03 -03:00
Stefan Hoffmann
071d28076f
move check_file_readonly() into /src/os/fs.c and rename it
2014-04-03 10:30:03 -03:00
Stefan Hoffmann
4a138137f7
check readonly by trying to open the file for writing...
...
instead of mch_access, to avoid a possible race condition
2014-04-03 10:30:03 -03:00
Thiago de Arruda
23ee78a093
Force travis build failure when some test fails
2014-04-03 10:21:56 -03:00
John Szakmeister
a3ec68ce1e
Use check_symbol_exists() instead of check_function_exists().
...
This is mostly a revert of 477031c03b
.
Now that we are not setting `CMAKE_C_FLAGS`, the check can work
correctly and it helps `pcc` (portable c compiler) make it further
along--though it still doesn't produce usable results (see #427 for the
details).
2014-04-03 04:32:27 -04:00
Justin M. Keyes
0895bf8828
vim-patch:7.4.166
...
Problem: Auto-loading a function for code that won't be executed.
Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto)
https://code.google.com/p/vim/source/detail?r=5d03c374712128077ac4c342aad02120ed98df70
2014-04-02 18:54:36 -03:00
oni-link
c298edd5dc
Replace use of mch_rename with rename.
...
The macro mch_rename is no longer necessary, because C99 function rename
is always available.
2014-04-02 18:52:16 -03:00
oni-link
c30c9b275c
remove HAVE_FCHDIR
2014-04-02 18:52:16 -03:00
oni-link
e9afd1cc28
remove HAVE_DL{OPEN, SYM}
2014-04-02 18:52:16 -03:00
oni-link
59f5c2251a
remove HAVE_WCTYPE_H
2014-04-02 18:52:16 -03:00
oni-link
9d2975efad
remove HAVE_WCHAR_H
2014-04-02 18:52:16 -03:00
oni-link
77433de0ca
remove HAVE_USLEEP
2014-04-02 18:52:16 -03:00
oni-link
930be11334
remove HAVE_SYS_{POLL_H, RESOURCE_H, SYSCTL_H, TYPES_H}
2014-04-02 18:52:16 -03:00
oni-link
f2ce38481b
remove HAVE_SYSINFO and HAVE_SYSINFO_MEM_UNIT
2014-04-02 18:52:16 -03:00
oni-link
8780e3ad11
remove HAVE_SVR4_PTYS
2014-04-02 18:52:16 -03:00
oni-link
87a317e076
remove HAVE_STRTOL
...
strtol is a C99 standard function.
2014-04-02 18:52:16 -03:00
oni-link
38ff389496
remove HAVE_STRPBRK
...
strpbrk is a C99 standard function.
2014-04-02 18:52:16 -03:00
oni-link
ec51b04a89
remove HAVE_STRING_H
2014-04-02 18:52:16 -03:00
oni-link
6c902e2104
remove HAVE_STRFTIME
...
strftime is a C99 standard function.
2014-04-02 18:52:16 -03:00
oni-link
5aa1128e97
remove HAVE_STRERROR
...
strerror is a C99 standard function.
2014-04-02 18:52:16 -03:00
oni-link
e38266a3dd
remove HAVE_STDLIB_H
2014-04-02 18:52:16 -03:00