]> git.eshelyaron.com Git - emacs.git/commitdiff
Make quail conversion output quieter
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 10:32:16 +0000 (12:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 10:32:16 +0000 (12:32 +0200)
* lisp/international/quail.el (quail-update-leim-list-file): Ditto.
* lisp/international/titdic-cnv.el (tit-process-header)
(tit-process-body, miscdic-convert, batch-titdic-convert): Reduce
messaging.

lisp/international/quail.el
lisp/international/titdic-cnv.el

index a29e3fb35d89ef853b5a7068728681f3e0f2b8dc..f42b594dc4680a2b3830b6d4147f71d0a42b2198 100644 (file)
@@ -3060,7 +3060,6 @@ of each directory."
       (when dirname
        (setq pkg-list (directory-files dirname 'full "\\.el$"))
        (while pkg-list
-         (message "Checking %s ..." (car pkg-list))
          (with-temp-buffer
            (insert-file-contents (car pkg-list))
            (goto-char (point-min))
index e6065fb0f76d6e8b1961b8b5eb833a125313a34f..8615d9533192c025bf2b93a3fffb1ff486ce7dc2 100644 (file)
@@ -251,7 +251,6 @@ SPC, 6, 3, 4, or 7 specifying a tone (SPC:陰平, 6:陽平, 3:上聲, 4:去聲,
 ;; Analyze header part of TIT dictionary and generate an appropriate
 ;; `quail-define-package' function call.
 (defun tit-process-header (filename)
-  (message "Processing header part...")
   (goto-char (point-min))
 
   ;; At first, generate header part of the Quail package while
@@ -416,7 +415,6 @@ SPC, 6, 3, 4, or 7 specifying a tone (SPC:陰平, 6:陽平, 3:上聲, 4:去聲,
 ;; Convert body part of TIT dictionary into `quail-define-rules'
 ;; function call.
 (defun tit-process-body ()
-  (message "Formatting translation rules...")
   (let* ((prev-key "")
         ch key translations pos)
     (princ "(quail-define-rules\n")
@@ -494,7 +492,6 @@ the generated Quail package is saved."
            (if (not slot)
                (error "Invalid ENCODE: value in TIT dictionary"))
            (setq coding-system (nth 1 slot))
-           (message "Decoding with coding system %s..." coding-system)
            (goto-char (point-min))
            (decode-coding-region (point-min) (point-max) coding-system)
            ;; Explicitly set eol format to `unix'.
@@ -556,7 +553,6 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\"."
          (when (or force
                    (file-newer-than-file-p
                     file (tit-make-quail-package-file-name file targetdir)))
-           (message "Converting %s to quail-package..." file)
            (titdic-convert file targetdir))
          (setq files (cdr files)))
        (setq command-line-args-left (cdr command-line-args-left)))))
@@ -1141,7 +1137,6 @@ the generated Quail package is saved."
              coding (nth 3 slot)
              converter (nth 5 slot)
              copyright (nth 6 slot))
-       (message "Converting %s to %s..." dicfile quailfile)
        ;; Explicitly set eol format to `unix'.
        (setq coding-system-for-write 'utf-8-unix)
        (with-temp-file (expand-file-name quailfile dirname)
@@ -1173,8 +1168,7 @@ the generated Quail package is saved."
                  ";; version-control: never\n"
                  ";; no-update-autoloads: t\n"
                  ";; End:\n\n"
-                 ";;; " quailfile " ends here\n"))
-       (message "Converting %s to %s...done" dicfile quailfile))
+                 ";;; " quailfile " ends here\n")))
       (setq tail (cdr tail)))))
 
 (defun batch-miscdic-convert ()