Skip to content

Commit 09b8391

Browse files
Change name of internal function to match name of commands
1 parent 750b8ec commit 09b8391

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ext/listener-mode.lisp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
(when win
184184
(replace-textarea buffer str))))
185185

186-
(defun %search-history-startwith (direction)
186+
(defun %search-history-startswith-input (direction)
187187
"Internal helper for history next and previous history navigation."
188188
(multiple-value-bind (step-fn rewind-fn)
189189
(ecase direction
@@ -219,13 +219,13 @@
219219
"Find the previous prompt starting with the current input.
220220
221221
See also `listener-previous-input`."
222-
(%search-history-startwith :previous))
222+
(%search-history-startswith-input :previous))
223223

224224
(define-command listener-next-startswith-input () ()
225225
"Find the next prompt starting with the current input.
226226
227227
See also `listener-next-input`."
228-
(%search-history-startwith :next))
228+
(%search-history-startswith-input :next))
229229

230230
(define-command listener-previous-input () ()
231231
"Get and insert the previous REPL input."

0 commit comments

Comments
 (0)