From: shuhei-k Date: Sat, 29 Aug 1998 13:54:59 +0000 (+0000) Subject: Closing parens were missing. X-Git-Tag: apel-8_16~7 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fapel.git;a=commitdiff_plain;h=34a2c7848aa17d7805d2586b8f6cdeff4c6ba427 Closing parens were missing. --- 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)