]> git.eshelyaron.com Git - emacs.git/commitdiff
(ccl-dump-call): Fix printing the subroutine name.
authorKenichi Handa <handa@m17n.org>
Fri, 11 Jun 2004 05:58:29 +0000 (05:58 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 11 Jun 2004 05:58:29 +0000 (05:58 +0000)
lisp/international/ccl.el

index e9e46bb0c6cc001b03f07f58edd8e83601d84da4..e55f1fbcf36be0c2dd09edaa019d0fe8d2152cea 100644 (file)
   (insert (format "write r%d (%d remaining)\n" rrr cc)))
 
 (defun ccl-dump-call (ignore cc)
-  (insert (format "call subroutine #%d\n" cc)))
+  (let ((subroutine (car (ccl-get-next-code))))
+    (insert (format "call subroutine `%s'\n" subroutine))))
 
 (defun ccl-dump-write-const-string (rrr cc)
   (if (= rrr 0)