aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan2012-10-31 19:30:19 +0000
committerokan2012-10-31 19:30:19 +0000
commit09592e294300150a2c627a176bdbec0fedf4e1d9 (patch)
tree408b348edf99fa03e26c6aee3e1b08229d0c3da5 /calmwm.c
parent5854a666c86986a568f60c94ce1fa0fe10104405 (diff)
downloadcwm-09592e294300150a2c627a176bdbec0fedf4e1d9.tar.gz
replace 'reload' with 'restart', which merely re-exec's cwm using the
existing argv; same idea with respect to argv saving as Alexander Polakov. reload support was half-complete and is getting in the way. agreed to by many
Diffstat (limited to '')
-rw-r--r--calmwm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/calmwm.c b/calmwm.c
index a9a7cd2..c327eba 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.c,v 1.65 2012/08/07 14:05:49 okan Exp $
+ * $OpenBSD: calmwm.c,v 1.66 2012/10/31 19:30:19 okan Exp $
*/
#include <sys/param.h>
@@ -34,6 +34,7 @@
#include "calmwm.h"
+char **cwm_argv;
Display *X_Dpy;
Cursor Cursor_default;
@@ -67,6 +68,7 @@ main(int argc, char **argv)
warnx("no locale support");
mbtowc(NULL, NULL, MB_CUR_MAX);
+ cwm_argv = argv;
while ((ch = getopt(argc, argv, "c:d:")) != -1) {
switch (ch) {
case 'c':