From 34a2c7848aa17d7805d2586b8f6cdeff4c6ba427 Mon Sep 17 00:00:00 2001 From: shuhei-k Date: Sat, 29 Aug 1998 13:54:59 +0000 Subject: [PATCH] Closing parens were missing. --- emu-mule.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emu-mule.el b/emu-mule.el index 6a3e853..8b74e36 100644 --- a/emu-mule.el +++ b/emu-mule.el @@ -98,7 +98,7 @@ (if coding-system (code-convert-string str *internal* coding-system) ;;(code-convert-string str *internal* nil) returns nil instead of str. - str) + str)) ;; XXX: Should we support optional NOCOPY argument? (only in Emacs 20.x) (defun decode-coding-string (str coding-system) @@ -114,7 +114,7 @@ coding-system *internal*)))) (setq len (1- len))) (concat ret (substring str len))) - str) + str)) (defalias 'detect-coding-region 'code-detect-region) -- 1.7.10.4