Skip to content

Commit

Permalink
Close #576, move usage of `downcase'
Browse files Browse the repository at this point in the history
  • Loading branch information
kchanqvq committed Mar 6, 2023
1 parent f34c222 commit 72f5373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/sly-mrepl.el
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ current ERROR-LEVEL."
error-level
next-entry-idx
condition)
'sly-mrepl--prompt (downcase package)))
'sly-mrepl--prompt package))
(move-overlay sly-mrepl--last-prompt-overlay beg (sly-mrepl--mark)))
(sly-mrepl--ensure-prompt-face)
(buffer-disable-undo)
Expand Down
2 changes: 1 addition & 1 deletion sly.el
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ that returns one such construct.")
(match-string 1 name))
((string-match "^\"\\(.*\\)\"$" name)
(match-string 1 name))
(t name)))
(t (downcase name))))

(add-to-list 'mode-line-misc-info
`(sly-mode (" [" sly--mode-line-format "] ")))
Expand Down

0 comments on commit 72f5373

Please sign in to comment.