comparison src/dosfns.c @ 15173:88a496a7964c

Undo previous change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 06 May 1996 10:20:51 +0000
parents a167da647656
children 31a30cc1d61a
comparison
equal deleted inserted replaced
15172:4745198895b6 15173:88a496a7964c
238 insert_char ('\n', 1); 238 insert_char ('\n', 1);
239 } 239 }
240 240
241 return Qt; 241 return Qt;
242 } 242 }
243
244 DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names,
245 0, 0, 0,
246 "Return non-nil if long file names are supported. on MSDOS.")
247 ()
248 {
249 #if __DJGPP__ >= 2
250 return (! NILP (Fgetenv ("LFN")) ? Qt : Qnil);
251 #else
252 return Qnil;
253 #endif
254 }
255
256 243
257 /* country info */ 244 /* country info */
258 int dos_country_code; 245 int dos_country_code;
259 int dos_codepage; 246 int dos_codepage;
260 int dos_timezone_offset; 247 int dos_timezone_offset;
330 defsubr (&Smsdos_mouse_init); 317 defsubr (&Smsdos_mouse_init);
331 defsubr (&Smsdos_mouse_enable); 318 defsubr (&Smsdos_mouse_enable);
332 defsubr (&Smsdos_set_keyboard); 319 defsubr (&Smsdos_set_keyboard);
333 defsubr (&Sinsert_startup_screen); 320 defsubr (&Sinsert_startup_screen);
334 defsubr (&Smsdos_mouse_disable); 321 defsubr (&Smsdos_mouse_disable);
335 defsubr (&Smsdos_long_file_names);
336 #ifndef HAVE_X_WINDOWS 322 #ifndef HAVE_X_WINDOWS
337 defsubr (&Smsdos_mouse_p); 323 defsubr (&Smsdos_mouse_p);
338 defsubr (&Sset_mouse_position); 324 defsubr (&Sset_mouse_position);
339 325
340 Qmsdos_color_translate = intern ("msdos-color-translate"); 326 Qmsdos_color_translate = intern ("msdos-color-translate");