Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work/47display images #48

Merged
merged 12 commits into from
Feb 8, 2024
4 changes: 4 additions & 0 deletions adoc-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
(require 'tempo)
(require 'mouse)
(require 'image)
(eval-when-compile
(when (version< emacs-version "29.0") ;; when-let has moved from subr-x to subr
(require 'subr-x)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

subr-x is full of useful functions, so it's fine to just require it unconditionally.

))

(defconst adoc-mode-version "0.8.0-snapshot"
"adoc mode version number.
Expand Down
Loading