Mercurial > emacs
diff src/msdos.c @ 15174:08937f70419e
(Fmsdos_long_file_names): New function.
(syms_of_msdos): Defsubr it.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 06 May 1996 10:21:23 +0000 |
| parents | 4dc406e38d68 |
| children | 242bddc25e5a |
line wrap: on
line diff
--- a/src/msdos.c Mon May 06 10:20:51 1996 +0000 +++ b/src/msdos.c Mon May 06 10:21:23 1996 +0000 @@ -2225,7 +2225,13 @@ #endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */ - +DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, + 0, 0, 0, + "Return non-nil if long file names are supported on MSDOS.") + () +{ + return (_USE_LFN ? Qt : Qnil); +} /* The Emacs root directory as determined by init_environment. */ @@ -2917,6 +2923,7 @@ staticpro (&recent_doskeys); defsubr (&Srecent_doskeys); + defsubt (&Smsdos_long_file_names); } #endif /* MSDOS */
