From 69dd8ce3984063fbc8bf5f8884690a16748be9f6 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Sat, 20 Dec 2014 19:17:14 -0500 Subject: [PATCH] Fix start_application() doc about which shell is used Since this commit: f691a55923850a4d315450925fc98733d07b69c9 the shell that is used is the system's bourne shell (/bin/sh) and the env variable SHELL is not considered. No logic changes. --- include/startup.h | 4 ++-- src/startup.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/startup.h b/include/startup.h index 9cbdf17b..2f28baa7 100644 --- a/include/startup.h +++ b/include/startup.h @@ -21,8 +21,8 @@ * (immediately), the application is reparented to init (process-id 1), which * correctly handles childs, so we don’t have to do it :-). * - * The shell is determined by looking for the SHELL environment variable. If - * it does not exist, /bin/sh is used. + * The shell used to start applications is the system's bourne shell (i.e., + * /bin/sh). * * The no_startup_id flag determines whether a startup notification context * (and ID) should be created, which is the default and encouraged behavior. diff --git a/src/startup.c b/src/startup.c index d6fe6d40..ebe8c1d9 100644 --- a/src/startup.c +++ b/src/startup.c @@ -123,8 +123,8 @@ void startup_sequence_delete(struct Startup_Sequence *sequence) { * the application is reparented to init (process-id 1), which correctly handles * childs, so we don’t have to do it :-). * - * The shell is determined by looking for the SHELL environment variable. If it - * does not exist, /bin/sh is used. + * The shell used to start applications is the system's bourne shell (i.e., + * /bin/sh). * * The no_startup_id flag determines whether a startup notification context * (and ID) should be created, which is the default and encouraged behavior. -- 2.39.5