From 011ed67616f4dd9b1ca983d32bdfca65e358e3dd Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 15 Feb 2001 06:01:00 +0000 Subject: * process.c (proc_waitall): new method based on a patch from Brian Fundakowski Feldman . * process.c (last_status_set): objectify $? value (Process::Status). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dir.c') diff --git a/dir.c b/dir.c index 2c3212081a..579a303086 100644 --- a/dir.c +++ b/dir.c @@ -558,7 +558,7 @@ extract_elem(path) } static void -remove_backslases(p) +remove_backslashes(p) char *p; { char *pend = p + strlen(p); @@ -590,7 +590,7 @@ rb_glob_helper(path, flag, func, arg) char *p, *m; if (!has_magic(path, 0)) { - remove_backslases(path); + remove_backslashes(path); if (rb_sys_stat(path, &st) == 0) { (*func)(path, arg); } -- cgit v1.2.3