]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc string improvements around `default-korean-keyboard'
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Jan 2021 07:12:10 +0000 (08:12 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Jan 2021 07:12:10 +0000 (08:12 +0100)
* lisp/language/korea-util.el (default-korean-keyboard): Mention
"Hangul" here for easier discoverability.
(toggle-korean-input-method, quail-hangul-switch-symbol-ksc)
(quail-hangul-switch-hanja): Mention the variable.

lisp/language/korea-util.el

index c99ff3c3f2df7ada6ecb351297c99fc866e3bb2d..b999eff662fae84df47f2936f331e999261f0ed9 100644 (file)
    (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") ""))
       "3"
     ""))
-   "The kind of Korean keyboard for Korean input method.
-\"\" for 2, \"3\" for 3.")
+   "The kind of Korean keyboard for Korean (Hangul) input method.
+\"\" for 2, \"3\" for 3, and \"3f\" for 3f.")
 
 ;; functions useful for Korean text input
 
 (defun toggle-korean-input-method ()
-  "Turn on or off a Korean text input method for the current buffer."
+  "Turn on or off a Korean text input method for the current buffer.
+The keyboard layout variation used is determined by
+`default-korean-keyboard'."
   (interactive)
   (if current-input-method
       (deactivate-input-method)
@@ -46,7 +48,9 @@
      (concat "korean-hangul" default-korean-keyboard))))
 
 (defun quail-hangul-switch-symbol-ksc (&rest _ignore)
-  "Switch to/from Korean symbol package."
+  "Switch to/from Korean symbol package.
+The keyboard layout variation used is determined by
+`default-korean-keyboard'."
   (interactive "i")
   (and current-input-method
        (if (string-equal current-input-method "korean-symbol")
@@ -55,7 +59,9 @@
         (activate-input-method "korean-symbol"))))
 
 (defun quail-hangul-switch-hanja (&rest _ignore)
-  "Switch to/from Korean hanja package."
+  "Switch to/from Korean hanja package.
+The keyboard layout variation used is determined by
+`default-korean-keyboard'."
   (interactive "i")
   (and current-input-method
        (if (string-match "korean-hanja" current-input-method)