diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-23 07:05:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-23 07:05:17 +0000 |
commit | e508ad53fd0ddbd1ef22ea923cbee0543e837681 (patch) | |
tree | 605602fec0ac241fbd9422eca73653a41f5b5729 /src | |
parent | 3d378fdf2331250bacceb806c854468c3989fddc (diff) | |
download | emacs-e508ad53fd0ddbd1ef22ea923cbee0543e837681.tar.gz |
(Fmake_directory_internal): Pass just 2 args to handler.
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 0e76991cb7c..494694782af 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -1858,7 +1858,7 @@ DEFUN ("make-directory-internal", Fmake_directory_internal, handler = Ffind_file_name_handler (dirname, Qmake_directory_internal); if (!NILP (handler)) - return call3 (handler, Qmake_directory_internal, dirname, Qnil); + return call2 (handler, Qmake_directory_internal, dirname); dir = XSTRING (dirname)->data; |