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

Respect Emacs 28 byte-compiler warnings #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions macrostep.el
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,8 @@
(make-variable-buffer-local 'macrostep-expansion-buffer)

(defvar macrostep-outer-environment nil
"Outermost macro-expansion environment to use in a dedicated macro-expansion buffers.
"Outermost macro-expansion environment to use in a dedicated
macro-expansion buffers.

This variable is used to save information about any enclosing
`cl-macrolet' context when a macro form is expanded in a separate
Expand Down Expand Up @@ -361,7 +362,8 @@ buffer.")
:type 'boolean)

(defcustom macrostep-expand-compiler-macros t
"When non-nil, expand compiler macros as well as `defmacro' and `macrolet' macros."
"When non-nil, expand compiler macros as well as `defmacro' and
`macrolet' macros."
:group 'macrostep
:type 'boolean)

Expand Down Expand Up @@ -497,7 +499,7 @@ Use \\[macrostep-collapse-all] or collapse all visible expansions to
quit and return to normal editing.

\\{macrostep-keymap}"
nil " Macro-Stepper"
:init-value nil :lighter " Macro-Stepper"
:keymap macrostep-keymap
:group macrostep
(if macrostep-mode
Expand Down