# HG changeset patch # User Aidan Kehoe # Date 1217065826 -7200 # Node ID 866b84b7c97e05aa9d2fabe6ace194f19611018a # Parent f9104f0e9b91b9f7ddc23c53ec8a98c625ad992b Remove interactive specs from #'mswindows-{short,long}-file-name, 2008-07-20 John Paul Wallington * nt.c (Fmswindows_short_file_name, Fmswindows_long_file_name): Remove their interactive specs; they shouldn't be called interactively. diff -r f9104f0e9b91 -r 866b84b7c97e src/ChangeLog --- a/src/ChangeLog Sat Jul 26 11:46:13 2008 +0200 +++ b/src/ChangeLog Sat Jul 26 11:50:26 2008 +0200 @@ -1,3 +1,8 @@ +2008-07-20 John Paul Wallington + + * nt.c (Fmswindows_short_file_name, Fmswindows_long_file_name): + Remove their interactive specs; they shouldn't be called interactively. + 2008-07-17 Aidan Kehoe * redisplay.c (init_redisplay): diff -r f9104f0e9b91 -r 866b84b7c97e src/nt.c --- a/src/nt.c Sat Jul 26 11:46:13 2008 +0200 +++ b/src/nt.c Sat Jul 26 11:50:26 2008 +0200 @@ -2063,7 +2063,7 @@ /* Some miscellaneous functions that are Windows specific, but not GUI specific (ie. are applicable in terminal or batch mode as well). */ -DEFUN ("mswindows-short-file-name", Fmswindows_short_file_name, 1, 1, "", /* +DEFUN ("mswindows-short-file-name", Fmswindows_short_file_name, 1, 1, 0, /* Return the short file name version (8.3) of the full path of FILENAME. If FILENAME does not exist, return nil. All path elements in FILENAME are converted to their short names. @@ -2092,7 +2092,7 @@ } -DEFUN ("mswindows-long-file-name", Fmswindows_long_file_name, 1, 1, "", /* +DEFUN ("mswindows-long-file-name", Fmswindows_long_file_name, 1, 1, 0, /* Return the long file name version of the full path of FILENAME. If FILENAME does not exist, return nil. All path elements in FILENAME are converted to their long names.