diff options
| author | Paul Eggert | 2012-07-29 00:16:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-29 00:16:45 -0700 |
| commit | 72b255c7e7856eb0abefb1149211a8be519f6fef (patch) | |
| tree | 29dcf155832dc040f3b0b21a64d88fe311c5c967 /lisp/language | |
| parent | 2549c068e14ab1ddfb1f1ea38ca7736c16db7296 (diff) | |
| download | emacs-72b255c7e7856eb0abefb1149211a8be519f6fef.tar.gz emacs-72b255c7e7856eb0abefb1149211a8be519f6fef.zip | |
deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
* NEWS: Document these changes.
* leim/quail/uni-input.el (ucs-input-deactivate):
Rename from ucs-input-inactivate.
* leim/quail/hangul.el (hangul-input-method-deactivate):
Rename from hangul-input-method-inactivate.
* emulation/viper-init.el (viper-deactivate-input-method-action):
Rename from viper-inactivate-input-method-action.
(viper-deactivate-input-method):
Rename from viper-inactivate-input-method.
* lisp/follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
* lisp/international/mule-cmds.el (deactivate-input-method):
Rename from inactivate-input-method.
Also run input-method-deactivate-hook.
(deactivate-current-input-method-function):
Rename from inactivate-current-input-method-function.
(input-method-deactivate-hook): New hook.
(input-method-inactivate-hook): Mark obsolete.
* lisp/international/quail.el (quail-activate):
Also run quail-deactivate-hook.
(quail-deactivate): Rename from quail-inactivate.
* lisp/international/robin.el (robin-activate):
Also run robin-deactivate-hook.
(robin-deactivate): Rename from robin-inactivate.
Diffstat (limited to 'lisp/language')
| -rw-r--r-- | lisp/language/korea-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/language/korea-util.el b/lisp/language/korea-util.el index ee8ebb7b2e7..abd5b29ba6e 100644 --- a/lisp/language/korea-util.el +++ b/lisp/language/korea-util.el | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | "Turn on or off a Korean text input method for the current buffer." | 41 | "Turn on or off a Korean text input method for the current buffer." |
| 42 | (interactive) | 42 | (interactive) |
| 43 | (if current-input-method | 43 | (if current-input-method |
| 44 | (inactivate-input-method) | 44 | (deactivate-input-method) |
| 45 | (activate-input-method | 45 | (activate-input-method |
| 46 | (concat "korean-hangul" default-korean-keyboard)))) | 46 | (concat "korean-hangul" default-korean-keyboard)))) |
| 47 | 47 | ||