Skip to content

Commit

Permalink
Don't require package "a" (Fixes joddie#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
skangas committed Oct 18, 2022
1 parent 0a0802b commit 14a5728
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pcre2el.el
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,6 @@
(require 'advice)
(require 'ring)
(require 'pcase)
(require 'a)

;;; Customization group
(defgroup rxt nil
Expand Down Expand Up @@ -1922,8 +1921,8 @@ Example:
(let* ((split-point (/ (+ start end) 2))
(left (recur start split-point))
(right (recur (1+ split-point) end)))
(cl-merge left right))))))
(cl-merge (left right)
(pcre2el-merge left right))))))
(pcre2el-merge (left right)
(cond ((null left) right)
((null right) left)
(t
Expand Down

0 comments on commit 14a5728

Please sign in to comment.