Skip to content

Commit

Permalink
Small fix for emacs-major-version >= 30 in jtsx-hs-forward-sexp()
Browse files Browse the repository at this point in the history
  • Loading branch information
ramblehead committed Mar 23, 2024
1 parent a173e7f commit deb4701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jtsx.el
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ INTERACTIVE and argument."
;; some issues. Bug report:
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66988 Use the
;; default one instead.
(> 30 emacs-major-version)
(>= 30 emacs-major-version)

;; Prevent recursive call
(eq forward-sexp-function #'jtsx-hs-forward-sexp))
Expand Down

0 comments on commit deb4701

Please sign in to comment.