emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/pyim f536e5ede3 06/41: Fix warns.


From: ELPA Syncer
Subject: [elpa] externals/pyim f536e5ede3 06/41: Fix warns.
Date: Sat, 4 Jun 2022 09:57:45 -0400 (EDT)

branch: externals/pyim
commit f536e5ede3087810fcf96b0ac062feb4c4ff813e
Author: Feng Shu <tumashu@163.com>
Commit: Feng Shu <tumashu@163.com>

    Fix warns.
---
 pyim-candidates.el | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pyim-candidates.el b/pyim-candidates.el
index 43e5217931..dce753394f 100644
--- a/pyim-candidates.el
+++ b/pyim-candidates.el
@@ -279,11 +279,14 @@
              ,@pinyin-chars-2
              )))))
 
-(cl-defmethod pyim-candidates-create (imobjs (scheme pyim-scheme-shuangpin))
+(cl-defmethod pyim-candidates-create (_imobjs (_scheme pyim-scheme-shuangpin))
   "按照 SCHEME, 从 IMOBJS 获得候选词条,用于双拼输入法。"
   (cl-call-next-method))
 
 (cl-defgeneric pyim-candidates-create-async (imobjs scheme)
+  "按照 SCHEME, 使用异步的方式从 IMOBJS 获得候选词条。")
+
+(cl-defmethod pyim-candidates-create-async (_imobjs _scheme)
   "按照 SCHEME, 使用异步的方式从 IMOBJS 获得候选词条。"
   nil)
 
@@ -302,6 +305,9 @@
         ,@(cdr pyim-candidates)))))
 
 (cl-defgeneric pyim-candidates-cloud-search (string scheme)
+  "云搜索 STRING, 返回候选词条列表.")
+
+(cl-defmethod pyim-candidates-cloud-search (_string _scheme)
   "云搜索 STRING, 返回候选词条列表."
   nil)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]