This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Goof in some of the comment fields of #12994.
[perl5.git] / lib / Cwd.pm
index 680fc3e..d86527f 100644 (file)
@@ -188,8 +188,9 @@ $pwd_cmd ||= 'pwd';
 # The 'natural and safe form' for UNIX (pwd may be setuid root)
 sub _backtick_pwd {
     my $cwd = `$pwd_cmd`;
-    # `pwd` may fail e.g. if the disk is full
+    # Belt-and-suspenders in case someone said "undef $/".
     local $/ = "\n";
+    # `pwd` may fail e.g. if the disk is full
     chomp($cwd) if defined $cwd;
     $cwd;
 }