refactor(collab): s/featurep!/modulep!

featurep! was renamed modulep! in ad6a3d0.

Close: #7420
Ref: ad6a3d0f33
Co-authored-by: lagman <lagman@users.noreply.github.com>
This commit is contained in:
Henrik Lissner 2023-09-14 03:38:45 +02:00
parent 3b692e92f5
commit cd2477e79c
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,6 @@
(use-package! crdt
:commands (crdt-share-buffer crdt-connect)
:init
(when (featurep! +tunnel)
(when (modulep! +tunnel)
(setq crdt-use-tuntox t)
(setq crdt-tuntox-password-in-url t)))

View file

@ -1,4 +1,5 @@
;;; tools/collab/doctor.el -*- lexical-binding: t; -*-
(when (and (featurep! +tunnel) (not (executable-find "tuntox")))
(when (and (modulep! +tunnel)
(not (executable-find "tuntox")))
(warn! "Couldn't find tuntox command. This needs to be on your path for the +tunnel flag to work properly."))