summaryrefslogtreecommitdiff
path: root/pod/perlthrtut.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-05-05 16:20:19 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-05-05 16:20:19 +0000
commit5311ebfa4a0d242cabb33e39a939e0a9c15a8d29 (patch)
tree6aa6024e48f7171924721c59c57c443401578751 /pod/perlthrtut.pod
parente9fdc7d2ad34e80787f760dcc04e2f23a1599092 (diff)
downloadperl-5311ebfa4a0d242cabb33e39a939e0a9c15a8d29.tar.gz
make perldoc use backslashed pathnames within system() on win32
p4raw-id: //depot/perl@3305
Diffstat (limited to 'pod/perlthrtut.pod')
-rw-r--r--pod/perlthrtut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod
index db2a319093..f2ca3bda64 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -843,7 +843,7 @@ like so:
use Config;
$Running_Threaded = 0;
- BEGIN { $Running_Threaded = $Config{'usethreaded'} }
+ BEGIN { $Running_Threaded = $Config{'usethreads'} }
sub sub1 { lock(\&sub1) if $Running_Threaded }