changeset 19932:2dce5db7cf82

(coding-system-unification-table-for-encode): Recurse properly. (coding-system-unification-table-for-decode): Recurse properly.
author Richard M. Stallman <rms@gnu.org>
date Mon, 15 Sep 1997 06:10:22 +0000
parents a17cd573df1c
children e135dd522e64
files lisp/international/mule-util.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/international/mule-util.el	Mon Sep 15 05:08:48 1997 +0000
+++ b/lisp/international/mule-util.el	Mon Sep 15 06:10:22 1997 +0000
@@ -254,7 +254,7 @@
   (and coding-system
        (symbolp coding-system)
        (or (get coding-system 'unification-table-for-decode)
-	   (coding-system-unification-table
+	   (coding-system-unification-table-for-decode
 	    (get coding-system 'coding-system)))))
 
 ;;;###autoload
@@ -263,7 +263,7 @@
   (and coding-system
        (symbolp coding-system)
        (or (get coding-system 'unification-table-for-encode)
-	   (coding-system-unification-table
+	   (coding-system-unification-table-for-encode
 	    (get coding-system 'coding-system)))))
 
 (defun coding-system-lessp (x y)