branch: externals/pyim
commit 5b2158684525bd841a5b47206dceeef0e83e79c8
Author: Feng Shu <[email protected]>
Commit: Feng Shu <[email protected]>
Move pyim-process-get-entered
---
pyim-process.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pyim-process.el b/pyim-process.el
index 34b9881cb2..d2be781c6e 100644
--- a/pyim-process.el
+++ b/pyim-process.el
@@ -217,9 +217,6 @@ imobj 组合构成在一起,构成了 imobjs 这个概念。比如:
(defun pyim-process-register-self-insert-command (command)
(cl-pushnew command pyim-process--self-insert-commands))
-(defun pyim-process-get-entered (&optional type)
- (pyim-entered-get type))
-
(defun pyim-process-get-candidates ()
pyim-process--candidates)
@@ -451,6 +448,9 @@ imobj 组合构成在一起,构成了 imobjs 这个概念。比如:
(defun pyim-process-without-entered-p ()
(= (length (pyim-process-get-entered 'point-before)) 0))
+(defun pyim-process-get-entered (&optional type)
+ (pyim-entered-get type))
+
(defun pyim-process-terminate ()
"Terminate the translation of the current key."
(pyim-process-terminate-really (pyim-scheme-current)))