compat: Load subr-x for Emacs < 28 compatibility

* lisp/org-compat.el: Require subr-x at compile time to define
string-trim for older Emacs versions.

Before Emacs 28.1, string-trim was defined in subr-x, leading to 'make
single' complaining about an undefined string-trim in the recently
added org-string-clean-whitespace.

Reported-by: Ihor Radchenko <yantar92@gmail.com>
Link: https://list.orgmode.org/8735c01aho.fsf@localhost
This commit is contained in:
Kyle Meyer 2022-10-08 01:40:07 -04:00
parent 233ad88651
commit 04d9d4b3db
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@
(require 'seq)
(require 'org-macs)
(eval-when-compile (require 'subr-x)) ; Emacs < 28
;; We rely on org-compat when generating Org version. Checking Org
;; version here will interfere with Org build process.
;; (org-assert-version)