Skip to content

Commit

Permalink
Fix a compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed Jan 26, 2025
1 parent fcd8359 commit 084ae8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtrt-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ adjusted transparently."
:lighter dtrt-indent-lighter
:group 'dtrt-indent
(if dtrt-indent-mode
(if (and (featurep 'smie) (not (null smie-grammar)) (not (eq smie-grammar 'unset)))
(if (and (boundp 'smie-grammar) (not (null smie-grammar)) (not (eq smie-grammar 'unset)))
(progn
(when (null smie-config--buffer-local) (smie-config-guess))
(when dtrt-indent-run-after-smie
Expand Down

0 comments on commit 084ae8c

Please sign in to comment.