user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] maildir: avoid redundant slashes
@ 2021-03-20  0:56 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-03-20  0:56 UTC (permalink / raw)
  To: meta

Redundant slashes look ugly in strace(1) output.
---
 lib/PublicInbox/LeiToMail.pm  | 2 +-
 lib/PublicInbox/MdirReader.pm | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/PublicInbox/LeiToMail.pm b/lib/PublicInbox/LeiToMail.pm
index 5cea73e1..6f386b10 100644
--- a/lib/PublicInbox/LeiToMail.pm
+++ b/lib/PublicInbox/LeiToMail.pm
@@ -637,7 +637,7 @@ sub poke_dst {
 	my ($self) = @_;
 	if ($self->{base_type} eq 'maildir') {
 		my $t = time + 1;
-		utime($t, $t, "$self->{dst}/cur");
+		utime($t, $t, $self->{dst} . 'cur');
 	}
 }
 
diff --git a/lib/PublicInbox/MdirReader.pm b/lib/PublicInbox/MdirReader.pm
index 06806e80..30e6f8ad 100644
--- a/lib/PublicInbox/MdirReader.pm
+++ b/lib/PublicInbox/MdirReader.pm
@@ -42,7 +42,7 @@ my %c2kw = ('D' => 'draft', F => 'flagged', R => 'answered', S => 'seen');
 sub maildir_each_eml ($$;@) {
 	my ($dir, $cb, @arg) = @_;
 	$dir .= '/' unless substr($dir, -1) eq '/';
-	my $pfx = "$dir/new/";
+	my $pfx = $dir . 'new/';
 	if (opendir(my $dh, $pfx)) {
 		while (defined(my $bn = readdir($dh))) {
 			next if substr($bn, 0, 1) eq '.';
@@ -53,7 +53,7 @@ sub maildir_each_eml ($$;@) {
 			$cb->($f, [], $eml, @arg);
 		}
 	}
-	$pfx = "$dir/cur/";
+	$pfx = $dir . 'cur/';
 	opendir my $dh, $pfx or return;
 	while (defined(my $bn = readdir($dh))) {
 		my $fl = maildir_basename_flags($bn) // next;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-20  0:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-20  0:56 [PATCH] maildir: avoid redundant slashes Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).