aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2022-11-05 12:09:09 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-03-15 12:21:08 +0100
commit43de776eef8683ed506d5c9d9ac0a3d5ece1fbec (patch)
tree402f2ff2f9349b5a05119b80cb3296a52e6a0022
parent1bf61d1cfd726bcb8a8e6266719b696d2aa72b1c (diff)
fix: Amend undefined symbol
-rw-r--r--nyxt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/nyxt.el b/nyxt.el
index 04ebb14..de1e65c 100644
--- a/nyxt.el
+++ b/nyxt.el
@@ -144,7 +144,7 @@ might require some delay to be correctly loaded."
(not nyxt-sly-connection))
(nyxt-sly-connect)
(sleep-for 0.1))
- (and focus (nyxt-exwm-focus-window))
+ (and focus (nyxt--exwm-focus-window))
(nyxt--sly-eval sexps))))
((or (string-match (rx (+ any) "Deleting socket") output)
(/= (process-exit-status process) 0))
@@ -152,7 +152,7 @@ might require some delay to be correctly loaded."
(setq nyxt-sly-connection nil)))))))
((or (nyxt--system-process-p)
nyxt-process)
- (and focus (nyxt-exwm-focus-window))
+ (and focus (nyxt--exwm-focus-window))
(nyxt--sly-eval sexps)))))
(defun nyxt--extension-p (system &optional symbol)