diff options
author | Kenichi Handa <handa@m17n.org> | 1998-05-18 01:01:00 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-05-18 01:01:00 +0000 |
commit | d2a1ee18b8fa524b509f4346b5419d52a99ab645 (patch) | |
tree | d1907e5cf04e2dab3e6bbcb1a6108adcba690b1d /lisp/international/mule-util.el | |
parent | b25eef20fdf530ff8cfca023d53bbeaf07b5b51f (diff) | |
download | emacs-d2a1ee18b8fa524b509f4346b5419d52a99ab645.tar.gz |
Change term unification to
translation throughtout the file.
Diffstat (limited to 'lisp/international/mule-util.el')
-rw-r--r-- | lisp/international/mule-util.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index 38178be30b0..ce6076faab0 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el @@ -231,14 +231,14 @@ Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil (coding-system-get coding-system 'pre-write-conversion)) ;;;###autoload -(defun coding-system-unification-table-for-decode (coding-system) - "Return the value of CODING-SYSTEM's unification-table-for-decode property." - (coding-system-get coding-system 'character-unification-table-for-decode)) +(defun coding-system-translation-table-for-decode (coding-system) + "Return the value of CODING-SYSTEM's translation-table-for-decode property." + (coding-system-get coding-system 'character-translation-table-for-decode)) ;;;###autoload -(defun coding-system-unification-table-for-encode (coding-system) - "Return the value of CODING-SYSTEM's unification-table-for-encode property." - (coding-system-get coding-system 'character-unification-table-for-encode)) +(defun coding-system-translation-table-for-encode (coding-system) + "Return the value of CODING-SYSTEM's translation-table-for-encode property." + (coding-system-get coding-system 'character-translation-table-for-encode)) (defun coding-system-lessp (x y) (cond ((eq x 'no-conversion) t) |