mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-23 10:34:07 +00:00
(read-input-method-name): Handle the
case that the arg DEFAULT is symbol.
This commit is contained in:
parent
d4b11c67a7
commit
bf294e6edb
@ -1,3 +1,11 @@
|
||||
1999-10-26 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* international/mule-cmds.el (read-input-method-name): Handle the
|
||||
case that the arg DEFAULT is symbol.
|
||||
|
||||
* international/mule-diag.el (mule-diag): Handle the case that
|
||||
default-input-method is symbol.
|
||||
|
||||
1999-10-26 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* textmodes/tildify.el: New file.
|
||||
|
@ -892,6 +892,8 @@ The return value is a string."
|
||||
(input-method (completing-read prompt input-method-alist
|
||||
nil t nil 'input-method-history
|
||||
default)))
|
||||
(if (and input-method (symbolp input-method))
|
||||
(setq input-method (symbol-name input-method)))
|
||||
(if (> (length input-method) 0)
|
||||
input-method
|
||||
(if inhibit-null
|
||||
|
Loading…
Reference in New Issue
Block a user