summaryrefslogtreecommitdiff
path: root/src/pty.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0849: BeOS code is not maintained and probably unusedv8.2.0849Bram Moolenaar2020-05-301-1/+1
| | | | | Problem: BeOS code is not maintained and probably unused. Solution: Remove the BeOS code. (Emir Sari, closes #5817)
* patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar2020-02-261-1/+1
| | | | | Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
* patch 8.1.2394: using old C style commentsv8.1.2394Bram Moolenaar2019-12-051-34/+32
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2243: typos in commentsv8.1.2243Bram Moolenaar2019-11-021-1/+1
| | | | | | Problem: Typos in comments. Solution: Fix the typos. (Dominique Pelle, closes #5160) Also adjust formatting a bit.
* patch 8.1.2021: some global functions can be local to the filev8.1.2021Bram Moolenaar2019-09-101-1/+1
| | | | | Problem: Some global functions can be local to the file. Solution: Add "static". (Yegappan Lakshmanan, closes #4917)
* patch 8.1.1229: warning for posix_openpt() not declaredv8.1.1229Bram Moolenaar2019-04-281-0/+1
| | | | | Problem: Warning for posix_openpt() not declared. (Tony Mechelynck) Solution: Add declaration.
* patch 8.1.1225: cannot create a pty to use with :terminal on FreeBSDv8.1.1225Bram Moolenaar2019-04-281-3/+36
| | | | | | Problem: Cannot create a pty to use with :terminal on FreeBSD. Solution: Add support for posix_openpt(). (Ozaki Kiichi, closes #4306, closes #4289)
* patch 8.1.0824: SunOS/Solaris has a problem with ttysv8.1.0824Bram Moolenaar2019-01-261-18/+48
| | | | | | Problem: SunOS/Solaris has a problem with ttys. Solution: Add mch_isatty() with extra handling for SunOS. (Ozaki Kiichi, closes #3865)
* patch 8.1.0443: unnecessary static function prototypesv8.1.0443Bram Moolenaar2018-09-301-2/+0
| | | | | Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
* patch 8.0.1550: various small problems in source filesv8.0.1550Bram Moolenaar2018-02-271-1/+1
| | | | | Problem: Various small problems in source files. Solution: Fix the problems.
* patch 8.0.1236: Mac features are confusingv8.0.1236Bram Moolenaar2017-10-281-7/+1
| | | | | | Problem: Mac features are confusing. Solution: Make feature names more consistent, add "osxdarwin". Rename feature flags, cleanup Mac code. (Kazunobu Kuriyama, closes #2178)
* patch 8.0.1166: :terminal doesn't work on Mac High Sierrav8.0.1166Bram Moolenaar2017-09-301-2/+3
| | | | | | Problem: :terminal doesn't work on Mac High Sierra. Solution: Change #ifdef for OpenPTY(). (Ozaki Kiichi, Kazunobu Kuriyama, closes #2162)
* patch 8.0.0751: OpenPTY missing with some combination of featuresv8.0.0751Bram Moolenaar2017-07-221-1/+1
| | | | | | Problem: OpenPTY missing with some combination of features. (Kazunobu Kuriyama) Solution: Adjust #ifdef. Also include pty.pro when needed.
* patch 8.0.0750: OpenPTY missing in non-GUI buildv8.0.0750Bram Moolenaar2017-07-221-0/+4
| | | | | Problem: OpenPTY missing in non-GUI build. Solution: Always include pty.c, add an #ifdef to skip over the contents.
* patch 8.0.0123v8.0.0123Bram Moolenaar2016-12-031-5/+5
| | | | | Problem: Modern Sun compilers define "__sun" instead of "sun". Solution: Use __sun. (closes #1296)
* patch 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.1975v7.4.1975Bram Moolenaar2016-07-011-1/+1
| | | | | | Problem: On MS-Windows large files (> 2Gbyte) cause problems. Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct stat". Use 64 bit system functions if available. (Ken Takata)
* patch 7.4.1225v7.4.1225Bram Moolenaar2016-01-311-12/+6
| | | | | Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
* patch 7.4.1213v7.4.1213Bram Moolenaar2016-01-301-6/+3
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1200v7.4.1200Bram Moolenaar2016-01-291-1/+1
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1199v7.4.1199Bram Moolenaar2016-01-291-5/+5
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* updated for version 7.3.409v7.3.409Bram Moolenaar2012-01-201-0/+4
| | | | | Problem: The license in pty.c is unclear. Solution: Add a comment about the license.
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-191-2/+1
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* updated for version 7.3.156v7.3.156Bram Moolenaar2011-04-111-4/+4
| | | | | Problem: Tty names possibly left unterminated. Solution: Use vim_strncpy() instead of strncpy().
* Fix for compiler warning about function prototype in pty.c.Bram Moolenaar2010-07-241-2/+4
|
* First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar2010-05-151-3/+1
|
* updated for version 7.2-001v7.2.001Bram Moolenaar2008-08-171-2/+3
|
* updated for version 7.2av7.2aBram Moolenaar2008-06-241-4/+0
|
* updated for version 7.0-202v7.0.202Bram Moolenaar2007-02-271-2/+2
|
* updated for version 7.0-156v7.0.156Bram Moolenaar2006-11-011-3/+3
|
* updated for version 7.0001v7.0001Bram Moolenaar2004-06-131-0/+425