aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-23 07:05:17 +0000
committerRichard M. Stallman1994-08-23 07:05:17 +0000
commite508ad53fd0ddbd1ef22ea923cbee0543e837681 (patch)
tree605602fec0ac241fbd9422eca73653a41f5b5729 /src
parent3d378fdf2331250bacceb806c854468c3989fddc (diff)
downloademacs-e508ad53fd0ddbd1ef22ea923cbee0543e837681.tar.gz
emacs-e508ad53fd0ddbd1ef22ea923cbee0543e837681.zip
(Fmake_directory_internal): Pass just 2 args to handler.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
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,
1858 1858
1859 handler = Ffind_file_name_handler (dirname, Qmake_directory_internal); 1859 handler = Ffind_file_name_handler (dirname, Qmake_directory_internal);
1860 if (!NILP (handler)) 1860 if (!NILP (handler))
1861 return call3 (handler, Qmake_directory_internal, dirname, Qnil); 1861 return call2 (handler, Qmake_directory_internal, dirname);
1862 1862
1863 dir = XSTRING (dirname)->data; 1863 dir = XSTRING (dirname)->data;
1864 1864