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

Clean up some inconsistencies in minibuffer prompts #388

Merged
merged 2 commits into from
Mar 11, 2024
Merged
Changes from 1 commit
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
Next Next commit
Remove duplicated ": " in minibuffer prompt
  • Loading branch information
bcc32 committed Mar 11, 2024
commit 038287480abd0e017a30e55aa41eaf4e6589fc5c
4 changes: 2 additions & 2 deletions ledger-report.el
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,13 @@ See documentation for the function `ledger-master-file'")
"Return a valid meta-data tag name."
;; It is intended completion should be available on existing tag
;; names, but it remains to be implemented.
(ledger-read-string-with-default "Tag Name: " nil))
(ledger-read-string-with-default "Tag Name" nil))

(defun ledger-report-tagvalue-format-specifier ()
"Return a valid meta-data tag name."
;; It is intended completion should be available on existing tag
;; values, but it remains to be implemented.
(ledger-read-string-with-default "Tag Value: " nil))
(ledger-read-string-with-default "Tag Value" nil))

(defun ledger-report-read-name ()
"Read the name of a ledger report to use, with completion.
Expand Down