diff options
| author | Kenichi Handa | 1998-04-14 01:07:28 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-04-14 01:07:28 +0000 |
| commit | 86e4f7c080138dce0a40b7f5ce39ec02b0f2dedb (patch) | |
| tree | 37bffabd752e0bdff3650353bc622567f00de46c | |
| parent | f30cc6122e343fe6a9afbda2e2230da87fc7c5a0 (diff) | |
| download | emacs-86e4f7c080138dce0a40b7f5ce39ec02b0f2dedb.tar.gz emacs-86e4f7c080138dce0a40b7f5ce39ec02b0f2dedb.zip | |
(titdic-convert): Message improved.
(tit-process-header): Change `Do byte-compile' to `Byte-compile'.
(batch-titdic-convert): Likewise.
| -rw-r--r-- | lisp/international/titdic-cnv.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el index 1d1e4e35a1c..9d4ee62c1de 100644 --- a/lisp/international/titdic-cnv.el +++ b/lisp/international/titdic-cnv.el | |||
| @@ -153,7 +153,7 @@ | |||
| 153 | (princ "\n;;\tOriginal TIT dictionary file: ") | 153 | (princ "\n;;\tOriginal TIT dictionary file: ") |
| 154 | (princ (file-name-nondirectory filename)) | 154 | (princ (file-name-nondirectory filename)) |
| 155 | (princ "\n\n;;; Comment:\n\n") | 155 | (princ "\n\n;;; Comment:\n\n") |
| 156 | (princ ";; Do byte-compile this file again after any modification.\n\n") | 156 | (princ ";; Byte-compile this file again after any modification.\n\n") |
| 157 | (princ ";;; Start of the header of original TIT dictionary.\n\n") | 157 | (princ ";;; Start of the header of original TIT dictionary.\n\n") |
| 158 | 158 | ||
| 159 | (while (not (eobp)) | 159 | (while (not (eobp)) |
| @@ -355,7 +355,7 @@ the generated Quail package is saved." | |||
| 355 | (if (not slot) | 355 | (if (not slot) |
| 356 | (error "Invalid ENCODE: value in TIT dictionary")) | 356 | (error "Invalid ENCODE: value in TIT dictionary")) |
| 357 | (setq coding-system (nth 1 slot)) | 357 | (setq coding-system (nth 1 slot)) |
| 358 | (message "Decoding by %s..." coding-system) | 358 | (message "Decoding with coding system %s..." coding-system) |
| 359 | (goto-char (point-min)) | 359 | (goto-char (point-min)) |
| 360 | (decode-coding-region (point-min) (point-max) coding-system)) | 360 | (decode-coding-region (point-min) (point-max) coding-system)) |
| 361 | 361 | ||
| @@ -415,7 +415,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\"." | |||
| 415 | (titdic-convert file targetdir)) | 415 | (titdic-convert file targetdir)) |
| 416 | (setq files (cdr files))) | 416 | (setq files (cdr files))) |
| 417 | (setq command-line-args-left (cdr command-line-args-left))) | 417 | (setq command-line-args-left (cdr command-line-args-left))) |
| 418 | (message "Do byte-compile the created files by:") | 418 | (message "Byte-compile the created files by:") |
| 419 | (message " %% emacs -batch -f batch-byte-compile XXX.el"))) | 419 | (message " %% emacs -batch -f batch-byte-compile XXX.el"))) |
| 420 | (kill-emacs 0)) | 420 | (kill-emacs 0)) |
| 421 | 421 | ||