Skip to content

Commit

Permalink
Merge pull request #16 from syohex/fix-byte-compile-warning
Browse files Browse the repository at this point in the history
Fix byte compile warnings
  • Loading branch information
kiwanami committed Mar 2, 2014
2 parents 63abaa6 + 6d21a43 commit 7b02122
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion epc.el
Expand Up @@ -45,6 +45,8 @@
(defvar epc:debug-out nil) (defvar epc:debug-out nil)
(defvar epc:debug-buffer "*epc log*") (defvar epc:debug-buffer "*epc log*")


(defvar epc:mngr)

;;(setq epc:debug-out t) ;;(setq epc:debug-out t)
;;(setq epc:debug-out nil) ;;(setq epc:debug-out nil)


Expand Down Expand Up @@ -856,7 +858,7 @@ Restart process."
(deferred:nextc it (deferred:nextc it
(lambda (ret) (message "Result : %S" ret))) (lambda (ret) (message "Result : %S" ret)))
(deferred:error it (deferred:error it
(lambda (err) (message "Error : %S" ret)))))))) (lambda (err) (message "Error : %S" err))))))))


(defun epc:define-keymap (keymap-list &optional prefix) (defun epc:define-keymap (keymap-list &optional prefix)
"[internal] Keymap utility." "[internal] Keymap utility."
Expand Down

0 comments on commit 7b02122

Please sign in to comment.