9front - general discussion about 9front
 help / color / mirror / Atom feed
From: kvik <vp@kvik.link>
To: 9front@9front.org
Subject: Re: [9front] rio exit menu
Date: Sun, 9 Dec 2018 22:38:45 +0100	[thread overview]
Message-ID: <6CFCF27E92A504A165B945790864E88F@kvik.link> (raw)
In-Reply-To: 20181209212953.GA71661@wopr

[-- Attachment #1: Type: text/plain, Size: 92 bytes --]

I find it useful to have an "Exit" menu entry, sometimes.
An opt-in option seems reasonable.

[-- Attachment #2: Type: text/plain, Size: 782 bytes --]

diff --git a/sys/src/cmd/rio/rio.c b/sys/src/cmd/rio/rio.c
--- a/sys/src/cmd/rio/rio.c
+++ b/sys/src/cmd/rio/rio.c
@@ -120,21 +120,22 @@ void
 threadmain(int argc, char *argv[])
 {
 	char *initstr, *kbdin, *s;
+	int exitdoor;
 	char buf[256];
 	Image *i;
 	Rectangle r;
 
-	if(strstr(argv[0], ".out") == nil){
-		menu3str[Exit] = nil;
-		Hidden--;
-	}
 	initstr = nil;
 	kbdin = nil;
 	maxtab = 0;
+	exitdoor = 0;
 	ARGBEGIN{
 	case 'b':
 		reverse = ~0xFF;
 		break;
+	case 'e':
+		exitdoor = TRUE;
+		break;
 	case 'f':
 		fontname = EARGF(usage());
 		break;
@@ -155,6 +156,11 @@ threadmain(int argc, char *argv[])
 	default:
 		usage();
 	}ARGEND
+	
+	if(exitdoor == 0){
+		menu3str[Exit] = nil;
+		Hidden--;
+	}
 
 	if(getwd(buf, sizeof buf) == nil)
 		startdir = estrdup(".");

             reply	other threads:[~2018-12-09 21:39 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-09 21:38 kvik [this message]
2018-12-09 21:40 ` Steve Simon
2018-12-09 21:55   ` Kurt H Maier
2018-12-09 22:04     ` Steve Simon
2018-12-09 22:07       ` Kurt H Maier
2018-12-09 22:28   ` Stanley Lieber
2018-12-11 21:24 ` Ethan Gardener
2018-12-11 21:34   ` hiro
2018-12-11 21:54     ` Ethan Gardener
2018-12-11 23:11       ` Ethan Gardener
  -- strict thread matches above, loose matches on Subject: below --
2018-12-09 20:26 qwx
2018-12-09 20:38 ` [9front] " Julius Schmidt
2018-12-09 20:53   ` Steve Simon
2018-12-09 21:01   ` Stanley Lieber
2018-12-09 21:03     ` hiro
2018-12-09 21:29       ` qwx
2018-12-13  8:56       ` Ethan Gardener
2018-12-13 10:44 ` Ethan Gardener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6CFCF27E92A504A165B945790864E88F@kvik.link \
    --to=vp@kvik.link \
    --cc=9front@9front.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).