comparison src/pty.c @ 20591:4411c2b96af9 v8.2.0849

patch 8.2.0849: BeOS code is not maintained and probably unused Commit: https://github.com/vim/vim/commit/041c7107f23d3b49ab62c1d7e36af90421db8b63 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 30 18:14:57 2020 +0200 patch 8.2.0849: BeOS code is not maintained and probably unused Problem: BeOS code is not maintained and probably unused. Solution: Remove the BeOS code. (Emir Sari, closes https://github.com/vim/vim/issues/5817)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 May 2020 18:30:04 +0200
parents 22f0dda71638
children 41a61dbb46d2
comparison
equal deleted inserted replaced
20590:a76cdc4bf606 20591:4411c2b96af9
384 384
385 # ifdef hpux 385 # ifdef hpux
386 static char PtyProto[] = "/dev/ptym/ptyXY"; 386 static char PtyProto[] = "/dev/ptym/ptyXY";
387 static char TtyProto[] = "/dev/pty/ttyXY"; 387 static char TtyProto[] = "/dev/pty/ttyXY";
388 # else 388 # else
389 # if defined (__BEOS__) || defined(__HAIKU__) 389 # ifdef(__HAIKU__)
390 static char PtyProto[] = "/dev/pt/XY"; 390 static char PtyProto[] = "/dev/pt/XY";
391 static char TtyProto[] = "/dev/tt/XY"; 391 static char TtyProto[] = "/dev/tt/XY";
392 # else 392 # else
393 static char PtyProto[] = "/dev/ptyXY"; 393 static char PtyProto[] = "/dev/ptyXY";
394 static char TtyProto[] = "/dev/ttyXY"; 394 static char TtyProto[] = "/dev/ttyXY";