From fc180e22c435fdfb833a15f3bc9e87bafb22bf3a Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 18 Nov 2021 07:26:39 +0100 Subject: [PATCH] [stumpwm] Fix wrong variable name in make-web-jump --- stumpwm/stumpwmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stumpwm/stumpwmrc b/stumpwm/stumpwmrc index 1eb71ed..b69ef39 100644 --- a/stumpwm/stumpwmrc +++ b/stumpwm/stumpwmrc @@ -312,7 +312,7 @@ (defmacro make-web-jump (name prefix) `(defcommand ,(intern name) (search) ((:rest ,(concatenate 'string name " search: "))) (substitute #\+ #\Space search) - (run-shell-command (concatenate 'string *www-browser* " " ,prefix search)))) + (run-shell-command (concatenate 'string *web-browser* " " ,prefix search)))) (make-web-jump "google" "http://www.google.com/search?q=") (make-web-jump "googlede" "http://www.google.de/search?q=")