Skip to content

Commit

Permalink
Remove dependency on s
Browse files Browse the repository at this point in the history
  • Loading branch information
phikal committed Feb 27, 2024
1 parent 8988e0e commit 0f0c346
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To use `lean4-mode` in Emacs, add the following to your `init.el`:
;; You need to modify the following line
(setq load-path (cons "/path/to/lean4-mode" load-path))
(setq lean4-mode-required-packages '(dash flycheck lsp-mode magit-section s))
(setq lean4-mode-required-packages '(dash flycheck lsp-mode magit-section))
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
Expand Down
2 changes: 1 addition & 1 deletion lean4-info.el
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ The buffer is supposed to be the *Lean Goal* buffer."
(goto-char 0)
(while (re-search-forward "\\(\\sw+\\)✝\\([¹²³⁴-⁹⁰]*\\)" nil t)
(replace-match
(propertize (s-concat (match-string-no-properties 1) (match-string-no-properties 2))
(propertize (concat (match-string-no-properties 1) (match-string-no-properties 2))
'font-lock-face 'font-lock-comment-face)
'fixedcase 'literal)))))))

Expand Down
2 changes: 1 addition & 1 deletion lean4-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
;; Maintainer: Sebastian Ullrich <sebasti@nullri.ch>
;; Created: Jan 09, 2014
;; Keywords: languages
;; Package-Requires: ((emacs "27.1") (dash "2.18.0") (s "1.10.0") (flycheck "30") (magit-section "2.90.1") (lsp-mode "8.0.0"))
;; Package-Requires: ((emacs "27.1") (dash "2.18.0") (flycheck "30") (magit-section "2.90.1") (lsp-mode "8.0.0"))
;; URL: https://github.com/leanprover/lean4-mode
;; SPDX-License-Identifier: Apache-2.0

Expand Down
2 changes: 0 additions & 2 deletions lean4-util.el
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
;;; Code:

(require 'cl-lib)
(require 's)
(require 'dash)
(require 'lean4-settings)

Expand All @@ -37,7 +36,6 @@ Try to find an executable named `lean4-executable-name' in variable `exec-path'.
On succsess, return path to the directory with this executable."
(let ((root (executable-find lean4-executable-name)))
(when root
(setq lean4-rootdir )
(setq lean4-rootdir (file-name-directory (directory-file-name (directory-file-name root)))))
lean4-rootdir))

Expand Down

0 comments on commit 0f0c346

Please sign in to comment.