branch: externals/pyim
commit a089f97a08c2343fd65f13ae265d98587a5f8362
Author: Feng Shu <[email protected]>
Commit: Feng Shu <[email protected]>
* pyim-candidates.el (pyim-candidates-create:quanpin): Use cons instead of `
---
pyim-candidates.el | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/pyim-candidates.el b/pyim-candidates.el
index 51cee3a..b028ae2 100644
--- a/pyim-candidates.el
+++ b/pyim-candidates.el
@@ -106,8 +106,7 @@ IMOBJS 获得候选词条。"
(let ((candidates (pyim-candidates-create-quanpin imobjs scheme-name)))
(push (car (pyim-candidates-create-quanpin imobjs scheme-name t))
output)
(setq n (length (car candidates)))))
- `(,(mapconcat #'identity (nreverse output) "")
- ,@candidates))))
+ (cons (mapconcat #'identity (nreverse output) "") candidates))))
(defun pyim-candidates-create-quanpin (imobjs scheme-name &optional
fast-search)
"`pyim-candidates-create:quanpin' 内部使用的函数。"