Skip to content

Commit c5dd026

Browse files
committed
Don't use seq-first, not supported on Emacs 26
1 parent f05e183 commit c5dd026

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cider-browse-spec.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Display TITLE at the top and SPECS are indented underneath."
150150
(format "(s/schema\n {%s})"
151151
(string-join
152152
(thread-last
153-
(seq-sort-by #'seq-first #'string< name-spec-pairs)
153+
(seq-sort-by #'car #'string< name-spec-pairs)
154154
(mapcar (lambda (s) (concat (cl-first s) " " (cider-browse-spec--pprint (cl-second s))))))
155155
"\n "))))
156156

test/cider-browse-spec-tests.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
;; Copyright © 2012-2022 r0man, Bozhidar Batsov
44

5-
;; Author: r0man <r0man@burningswell.com>
5+
;; Author: r0man <roman@burningswell.com>
66
;; Bozhidar Batsov <[email protected]>
77

88
;; This file is NOT part of GNU Emacs.

0 commit comments

Comments
 (0)