aboutsummaryrefslogtreecommitdiffstats
path: root/src/dosfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dosfns.c')
-rw-r--r--src/dosfns.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/dosfns.c b/src/dosfns.c
index d04c28b3156..e8756de21a1 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -48,10 +48,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
48#include <grp.h> 48#include <grp.h>
49#include <crt0.h> 49#include <crt0.h>
50 50
51#ifndef __DJGPP_MINOR__
52# define __tb _go32_info_block.linear_address_of_transfer_buffer;
53#endif
54
55DEFUN ("int86", Fint86, Sint86, 2, 2, 0, 51DEFUN ("int86", Fint86, Sint86, 2, 2, 0,
56 doc: /* Call specific MS-DOS interrupt number INTERRUPT with REGISTERS. 52 doc: /* Call specific MS-DOS interrupt number INTERRUPT with REGISTERS.
57Return the updated REGISTER vector. 53Return the updated REGISTER vector.
@@ -385,8 +381,6 @@ init_dosfns ()
385 } 381 }
386#endif /* !HAVE_X_WINDOWS */ 382#endif /* !HAVE_X_WINDOWS */
387 383
388#if __DJGPP__ >= 2
389
390 /* Without this, we never see hidden files. 384 /* Without this, we never see hidden files.
391 Don't OR it with the previous value, so the value recorded at dump 385 Don't OR it with the previous value, so the value recorded at dump
392 time, possibly with `preserve-case' flags set, won't get through. */ 386 time, possibly with `preserve-case' flags set, won't get through. */
@@ -398,7 +392,6 @@ init_dosfns ()
398 if (!NILP (Fmsdos_long_file_names ())) 392 if (!NILP (Fmsdos_long_file_names ()))
399 __opendir_flags |= __OPENDIR_PRESERVE_CASE; 393 __opendir_flags |= __OPENDIR_PRESERVE_CASE;
400#endif /* __DJGPP_MINOR__ == 0 */ 394#endif /* __DJGPP_MINOR__ == 0 */
401#endif /* __DJGPP__ >= 2 */
402} 395}
403 396
404#ifndef HAVE_X_WINDOWS 397#ifndef HAVE_X_WINDOWS