Minor fix in 'describe-language-environment'
* lisp/international/mule-cmds.el (describe-language-environment): Use 'current-language-environment' as DEFAULT in the prompt. Patch by Thierry Volpiatto <thievol@posteo.net>. (Bug#68602)
This commit is contained in:
parent
8163e0b20c
commit
fa7543eeb7
1 changed files with 3 additions and 1 deletions
|
@ -2159,7 +2159,9 @@ See `set-language-info-alist' for use in programs."
|
|||
(interactive
|
||||
(list (read-language-name
|
||||
'documentation
|
||||
(format-prompt "Describe language environment" current-language-environment))))
|
||||
(format-prompt "Describe language environment"
|
||||
current-language-environment)
|
||||
current-language-environment)))
|
||||
(let ((help-buffer-under-preparation t))
|
||||
(if (null language-name)
|
||||
(setq language-name current-language-environment))
|
||||
|
|
Loading…
Add table
Reference in a new issue