Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Or one typo, which ended up being copy-pasted.
  • Loading branch information
tarsius committed May 8, 2024
1 parent f7cba11 commit 855d924
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lisp/git-commit.el
Expand Up @@ -114,7 +114,7 @@
(require 'compat)
(require 'subr-x)

(when (and (featurep' seq)
(when (and (featurep 'seq)
(not (fboundp 'seq-keep)))
(unload-feature 'seq 'force))
(require 'seq)
Expand Down
2 changes: 1 addition & 1 deletion lisp/magit-libgit.el
Expand Up @@ -45,7 +45,7 @@
(require 'eieio)
(require 'subr-x)

(when (and (featurep' seq)
(when (and (featurep 'seq)
(not (fboundp 'seq-keep)))
(unload-feature 'seq 'force))
(require 'seq)
Expand Down
2 changes: 1 addition & 1 deletion lisp/magit-section.el
Expand Up @@ -51,7 +51,7 @@
;; For older Emacs releases we depend on an updated `seq' release from GNU
;; ELPA, for `seq-keep'. Unfortunately something else may require `seq'
;; before `package' had a chance to put this version on the `load-path'.
(when (and (featurep' seq)
(when (and (featurep 'seq)
(not (fboundp 'seq-keep)))
(unload-feature 'seq 'force))
(require 'seq)
Expand Down

0 comments on commit 855d924

Please sign in to comment.