Mercurial > hg > xemacs-beta
changeset 4487:866b84b7c97e
Remove interactive specs from #'mswindows-{short,long}-file-name,
2008-07-20 John Paul Wallington <jpw@pobox.com>
* nt.c (Fmswindows_short_file_name, Fmswindows_long_file_name):
Remove their interactive specs; they shouldn't be called interactively.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 26 Jul 2008 11:50:26 +0200 |
parents | f9104f0e9b91 |
children | 6b0000935adc |
files | src/ChangeLog src/nt.c |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <jpw@pobox.com> + + * 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 <kehoea@parhasard.net> * redisplay.c (init_redisplay):
--- 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.