summaryrefslogtreecommitdiff
path: root/src/os_unix.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.1.1118: a couple of conditions are hard to understandv8.1.1118Bram Moolenaar2019-04-041-13/+19
* patch 8.1.1086: too many curly bracesv8.1.1086Bram Moolenaar2019-03-301-2/+0
* patch 8.1.1034: too many #ifdefsv8.1.1034Bram Moolenaar2019-03-221-6/+2
* patch 8.1.1032: warnings from clang static analyzerv8.1.1032Bram Moolenaar2019-03-211-2/+2
* patch 8.1.0989: various small code uglinessv8.1.0989Bram Moolenaar2019-03-021-4/+4
* patch 8.1.0983: checking __CYGWIN32__ unnecessarilyv8.1.0983Bram Moolenaar2019-02-261-3/+3
* patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar2019-02-171-1/+1
* patch 8.1.0890: pty allocation wrong if using file for out channelv8.1.0890Bram Moolenaar2019-02-101-14/+20
* patch 8.1.0863: cannot see what signal caused a job to endv8.1.0863Bram Moolenaar2019-01-311-2/+24
* patch 8.1.0834: GUI may wait too long before dealing with messagesv8.1.0834Bram Moolenaar2019-01-271-132/+17
* patch 8.1.0824: SunOS/Solaris has a problem with ttysv8.1.0824Bram Moolenaar2019-01-261-42/+87
* patch 8.1.0809: too many #ifdefsv8.1.0809Bram Moolenaar2019-01-241-22/+2
* patch 8.1.0791: a few compiler warnings on VMSv8.1.0791Bram Moolenaar2019-01-221-1/+1
* patch 8.1.0788: cannot build with tiny featuresv8.1.0788Bram Moolenaar2019-01-201-12/+13
* patch 8.1.0787: compiler warning for unused functionv8.1.0787Bram Moolenaar2019-01-201-9/+13
* patch 8.1.0785: depending on the configuration some functions are unusedv8.1.0785Bram Moolenaar2019-01-201-3/+3
* patch 8.1.0779: argument for message functions is inconsistentv8.1.0779Bram Moolenaar2019-01-191-26/+26
* patch 8.1.0770: inconsistent use of ELAPSED_FUNCv8.1.0770Bram Moolenaar2019-01-171-10/+10
* patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar2019-01-131-14/+14
* patch 8.1.0661: clipboard regexp might be used recursivelyv8.1.0661Bram Moolenaar2018-12-291-1/+7
* patch 8.1.0657: get error for using regexp recursivelyv8.1.0657Bram Moolenaar2018-12-291-2/+2
* patch 8.1.0656: trying to reconnect to X server may cause problemsv8.1.0656Bram Moolenaar2018-12-291-23/+28
* patch 8.1.0649: setjmp() variables defined globally are used in one filev8.1.0649Bram Moolenaar2018-12-281-6/+18
* patch 8.1.0615: get_tv function names are not consistentv8.1.0615Bram Moolenaar2018-12-211-5/+7
* patch 8.1.0572: stopping a job does not work properly on OpenBSDv8.1.0572Bram Moolenaar2018-12-081-11/+7
* patch 8.1.0526: running out of signal stack in RealWaitForCharv8.1.0526Bram Moolenaar2018-11-121-1/+3
* patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar2018-09-301-38/+1
* patch 8.1.0426: accessing invalid memory in SmcOpenConnection()v8.1.0426Bram Moolenaar2018-09-221-1/+1
* patch 8.1.0377: xdiff doesn't use the Vim memory allocation functionsv8.1.0377Bram Moolenaar2018-09-131-21/+21
* patch 8.1.0371: argument types for select() may be wrongv8.1.0371Bram Moolenaar2018-09-121-23/+4
* patch 8.1.0349: crash when wiping buffer in a callbackv8.1.0349Bram Moolenaar2018-09-061-4/+8
* patch 8.1.0329: using inputlist() during startup results in garbagev8.1.0329Bram Moolenaar2018-08-271-0/+7
* patch 8.1.0312: wrong type for flags used in signal handlersv8.1.0312Bram Moolenaar2018-08-211-7/+7
* patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONTv8.1.0304Bram Moolenaar2018-08-211-29/+59
* patch 8.1.0302: crash when using :suspend and "fg"v8.1.0302Bram Moolenaar2018-08-201-56/+13
* patch 8.1.0300: the old window title might be freed twicev8.1.0300Bram Moolenaar2018-08-191-2/+9
* patch 8.1.0268: file type checking has too many #ifdefv8.1.0268Bram Moolenaar2018-08-111-8/+0
* patch 8.1.0253: saving and restoring window title does not always workv8.1.0253Bram Moolenaar2018-08-071-6/+12
* patch 8.1.0244: no redraw when using a STOP signal on Vim and then CONTv8.1.0244Bram Moolenaar2018-08-071-13/+55
* patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"v8.1.0087Bram Moolenaar2018-06-191-1/+9
* patch 8.1.0054: compiler warning for using %ld for "long long"v8.1.0054Bram Moolenaar2018-06-131-2/+2
* patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal windowv8.1.0050Bram Moolenaar2018-06-121-12/+29
* patch 8.1.0049: shell cannot tell running in a terminal windowv8.1.0049Bram Moolenaar2018-06-121-0/+6
* patch 8.0.1820: terminal window redirecting stdout does not show stderrv8.0.1820Bram Moolenaar2018-05-121-1/+6
* patch 8.0.1795: lose contact with jobs when :gui forksv8.0.1795Bram Moolenaar2018-05-051-5/+13
* patch 8.0.1761: job in terminal window with no output channel is killedv8.0.1761Bram Moolenaar2018-04-241-7/+8
* patch 8.0.1753: various warnings from a static analyserv8.0.1753Bram Moolenaar2018-04-241-1/+1
* patch 8.0.1745: build failure on MS-Windowsv8.0.1745Bram Moolenaar2018-04-211-85/+0
* patch 8.0.1665: when running a terminal from the GUI 'term' is not usefulv8.0.1665Bram Moolenaar2018-04-051-2/+14
* patch 8.0.1629: Mac: getpagesize() is deprecatedv8.0.1629Bram Moolenaar2018-03-221-1/+1