Fix failing tests
* lisp/org-compat.el (org-string-collate-lessp): Reinstate function, inadvertently removed in last merge with maint branch.
This commit is contained in:
parent
2a7a4a65ad
commit
61c8903c87
|
@ -87,6 +87,12 @@
|
|||
(and (memq system-type '(windows-nt ms-dos))
|
||||
(= lastc ?\\))))))
|
||||
|
||||
;; `string-collate-lessp' is new in Emacs 25.
|
||||
(defalias 'org-string-collate-lessp
|
||||
(if (fboundp 'string-collate-lessp)
|
||||
'string-collate-lessp
|
||||
'string-lessp))
|
||||
|
||||
|
||||
;;; Obsolete aliases (remove them after the next major release).
|
||||
|
||||
|
|
Loading…
Reference in New Issue