]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve message regarding missing LEIM
authorStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 15:55:21 +0000 (17:55 +0200)
committerStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 15:58:15 +0000 (17:58 +0200)
* lisp/international/ja-dic-utl.el (skkdic-lookup-key):
* lisp/international/mule-diag.el (list-input-methods-1):
* lisp/international/quail.el (quail-use-package): Explain that LEIM
is installed together with Emacs.

lisp/international/ja-dic-utl.el
lisp/international/mule-diag.el
lisp/international/quail.el

index cc636986f991b4b1fb68ed1d34dcfe3ef99cda5d..3f6500669a414cc45875abe9ab2a85f2bab1e43c 100644 (file)
@@ -112,11 +112,9 @@ without okurigana are placed at the head of the returned list."
                 (princ (substitute-command-keys "\
 The library `ja-dic' can't be loaded.
 
-The most common case is that you have not yet installed the library
-included in LEIM (Libraries of Emacs Input Method) which is
-distributed separately from Emacs.
-
-LEIM is available from the same ftp directory as Emacs.")))
+This might indicate a problem with your Emacs installation, as
+LEIM (Libraries of Emacs Input Method) should normally always be
+installed together with Emacs.")))
               (signal (car err) (cdr err)))))
 
   (let ((vec (make-vector len 0))
index 646e0b84802926e6320e092012fa72d9bc5464a4..cdf2e527e25446fb298c80ad25a83c8138a06f74 100644 (file)
@@ -1068,8 +1068,11 @@ see the function `describe-fontset' for the format of the list."
   (with-current-buffer standard-output
     (if (not input-method-alist)
         (insert "
-No input method is available, perhaps because you have not
-installed LEIM (Libraries of Emacs Input Methods).")
+No input method is available.
+
+This might indicate a problem with your Emacs installation, as
+LEIM (Libraries of Emacs Input Method) should normally always be
+installed together with Emacs.")
       (insert (substitute-command-keys
                "LANGUAGE\n  NAME (`TITLE' in mode line)\n"))
       (insert "    SHORT-DESCRIPTION\n------------------------------\n")
index 529cf97215e14e535b1cddb1a5739285328c67c2..4bb6dbcc8e4d5ffd2d6b01dced2660a905c67b54 100644 (file)
@@ -249,11 +249,9 @@ This activates input method defined by PACKAGE-NAME by running
                  (princ (car libraries))
                  (princ (substitute-command-keys "\" is not in `load-path'.
 
-The most common case is that you have not yet installed appropriate
-libraries in LEIM (Libraries of Emacs Input Method) which is
-distributed separately from Emacs.
-
-LEIM is available from the same ftp directory as Emacs.")))
+This might indicate a problem with your Emacs installation, as
+LEIM (Libraries of Emacs Input Method) should normally always be
+installed together with Emacs.")))
                (error "Can't use the Quail package `%s'" package-name))
            (setq libraries (cdr libraries))))))
   (quail-select-package package-name)