string-remove-prefix: fix compilation error

string-remove-prefix is automatically available when evaluating the
source code, it's not the case when we compile it. Let's require its
library (subr-x) when compiling the list code.
This commit is contained in:
Félix Baylac-Jacqué 2022-04-04 17:28:27 +02:00
parent 24490140f3
commit e9a208c3bb
No known key found for this signature in database
GPG key ID: EFD315F31848DBA4

2
h.el
View file

@ -28,6 +28,8 @@
;;; Code:
(eval-when-compile (require 'subr-x))
(defgroup h-group nil
"Variables used to setup the h.el code folder manager."
:group 'Communication)