Skip to content

Commit

Permalink
Fix doc strings for racket-expand-{region definition last-sexp}
Browse files Browse the repository at this point in the history
Overlooked in commit 3ce25d8, which changed from using expand-once to
using the macro-debugger package (in order to use the new
customization racket-expand-hiding for all expansion commands).
  • Loading branch information
greghendershott committed Jan 29, 2024
1 parent 3ce25d8 commit 5a739e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
9 changes: 3 additions & 6 deletions doc/racket-mode.texi
Original file line number Diff line number Diff line change
Expand Up @@ -2829,8 +2829,7 @@ were 'disabled.

Expand the active region using @ref{racket-stepper-mode}.

Uses Racket's @code{expand-once} in the namespace from the most recent
@ref{racket-run}.
Uses the @code{macro-debugger} package to do the expansion.

With @kbd{C-u} behaves as if @ref{racket-expand-hiding}
were 'disabled.
Expand All @@ -2842,8 +2841,7 @@ were 'disabled.

Expand the definition around point using @ref{racket-stepper-mode}.

Uses Racket's @code{expand-once} in the namespace from the most recent
@ref{racket-run}.
Uses the @code{macro-debugger} package to do the expansion.

With @kbd{C-u} behaves as if @ref{racket-expand-hiding}
were 'disabled.
Expand All @@ -2855,8 +2853,7 @@ were 'disabled.

Expand the sexp before point using @ref{racket-stepper-mode}.

Uses Racket's @code{expand-once} in the namespace from the most recent
@ref{racket-run}.
Uses the @code{macro-debugger} package to do the expansion.

With @kbd{C-u} behaves as if @ref{racket-expand-hiding}
were 'disabled.
Expand Down
9 changes: 3 additions & 6 deletions racket-stepper.el
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ were \\='disabled."
(defun racket-expand-region (&optional no-hiding)
"Expand the active region using `racket-stepper-mode'.
Uses Racket's `expand-once` in the namespace from the most recent
`racket-run'.
Uses the `macro-debugger` package to do the expansion.
With \\[universal-argument] behaves as if `racket-expand-hiding'
were \\='disabled."
Expand All @@ -100,8 +99,7 @@ were \\='disabled."
(defun racket-expand-definition (&optional no-hiding)
"Expand the definition around point using `racket-stepper-mode'.
Uses Racket's `expand-once` in the namespace from the most recent
`racket-run'.
Uses the `macro-debugger` package to do the expansion.
With \\[universal-argument] behaves as if `racket-expand-hiding'
were \\='disabled."
Expand All @@ -116,8 +114,7 @@ were \\='disabled."
(defun racket-expand-last-sexp (&optional no-hiding)
"Expand the sexp before point using `racket-stepper-mode'.
Uses Racket's `expand-once` in the namespace from the most recent
`racket-run'.
Uses the `macro-debugger` package to do the expansion.
With \\[universal-argument] behaves as if `racket-expand-hiding'
were \\='disabled."
Expand Down

0 comments on commit 5a739e2

Please sign in to comment.