aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-i18n.el
diff options
context:
space:
mode:
authorWilliam Xu <william.xwl@gmail.com>2009-08-06 18:53:19 +0800
committerWilliam Xu <william.xwl@gmail.com>2009-08-06 18:53:19 +0800
commiteef8a91d50aa4515daec4cd51ef8a1e0a3682a75 (patch)
treee22f24fb6092afd3048eac28124e860228057182 /lisp/emms-i18n.el
parentf64f5d9b9b3b1546d247033198504f164c2919ee (diff)
emms-i18n.el: Spell fix.
Diffstat (limited to 'lisp/emms-i18n.el')
-rw-r--r--lisp/emms-i18n.el32
1 files changed, 17 insertions, 15 deletions
diff --git a/lisp/emms-i18n.el b/lisp/emms-i18n.el
index 18f3e96..3d8d40e 100644
--- a/lisp/emms-i18n.el
+++ b/lisp/emms-i18n.el
@@ -53,13 +53,13 @@
this list, use `emms-i18n-default-coding-system' instead.")
(defvar emms-i18n-coding-system-for-read 'utf-8
- "If coding detect failed, use this for decode")
+ "If coding detect failed, use this for decode.")
(defvar emms-i18n-default-coding-system '(no-conversion . no-conversion)
- "If non-nil, used for decode and encode")
+ "If non-nil, used for decode and encode.")
(defvar emms-i18n-coding-dectect-functions nil
- "A list of function to call to detect codings")
+ "A list of function to call to detect codings.")
(defvar emms-i18n-detect-max-size 10000
"Max bytes to detect coding system. Nil mean scan whole buffer.")
@@ -100,18 +100,20 @@ this list, use `emms-i18n-default-coding-system' instead.")
(cdr default-process-coding-system))))))
(defun emms-i18n-call-process-simple (&rest args)
- "This function run program and return the program result. If the CAR
-part of `emms-i18n-default-coding-system' is non-nil, the program result will
-be decode use the CAR part of emms-i18n-default-coding-system. Otherwise,
-use `emms-i18n-coding-dectect-functions' to detect the coding system of the
-result. If the emms-i18n-coding-dectect-functions failed, use
-`emms-i18n-detect-coding-function' to detect coding system. If all the
-coding system is nil or in `emms-i18n-nerver-used-coding-system', decode
-the result using `emms-i18n-coding-system-for-read'.
-
-The rest arguments ARGS is as the same as `call-process', except the
-BUFFER should always have value t. Otherwise the coding detection will
-not perform."
+ "This function run program and return the program result.
+If the CAR part of `emms-i18n-default-coding-system' is non-nil,
+the program result will be decode use the CAR part of
+emms-i18n-default-coding-system. Otherwise, use
+`emms-i18n-coding-dectect-functions' to detect the coding system
+of the result. If the emms-i18n-coding-dectect-functions failed,
+use `emms-i18n-detect-coding-function' to detect coding
+system. If all the coding system is nil or in
+`emms-i18n-never-used-coding-system', decode the result using
+`emms-i18n-coding-system-for-read'.
+
+ARGS are the same as in `call-process', except the BUFFER should
+always have value t. Otherwise the coding detection will not
+perform."
(let ((default-process-coding-system (copy-tree default-process-coding-system))
(process-coding-system-alist nil) exit pos)
(when (eq (nth 2 args) 't)