Skip to content

Commit 2874d3c

Browse files
authored
mail: exit command (#648)
* On OpenBSD the exit command has 3 aliases: x, ex, xit[1] * I'm not sure why someone would type "xit" instead of "x", but add it here too for completeness 1. http://man.openbsd.org/mail.1
1 parent 4d29f2f commit 2874d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/mail

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ $BUFFERL=2; # Lines needed for "fluff"
644644
"chdir" => { alias => 'c', args => 'path', },
645645
copy => { alias => 'co', args => 'msg,path', func => \&msg_copy },
646646
"delete" => { alias => 'd', args => 'msg', func => \&msg_delete },
647-
"exit" => { alias => 'ex,x', func => sub { exit; } },
647+
"exit" => { alias => 'ex,x,xit', func => sub { exit; } },
648648
from => { alias => 'f', args => 'msg', func => \&from },
649649
headers => { alias => 'h', args => 'msg', func => \&listing },
650650
hold => { alias => 'ho,preserve', args => 'msg', func => \&unread },

0 commit comments

Comments
 (0)