null+****@clear*****
null+****@clear*****
Mon Feb 27 12:53:00 JST 2012
yuta yamada 2012-02-27 12:53:00 +0900 (Mon, 27 Feb 2012) New Revision: 45ed8d5194d946b4962528af1e246baf1bbb7a79 Log: Fix to delete unnecessary space Modified files: logalimacs.el Modified: logalimacs.el (+3 -3) =================================================================== --- logalimacs.el 2012-02-27 12:47:21 +0900 (d4d6fc0) +++ logalimacs.el 2012-02-27 12:53:00 +0900 (8587c82) @@ -155,10 +155,10 @@ (defun loga-lookup-attach-option (find-word) (let* ((options (list))) (if loga-use-dictionary-option - (push " --dictionary" options)) + (push "--dictionary" options)) (if (and loga-possible-json-p (eq loga-current-endpoint :popup)) - (push " --output=json" options)) - (concat find-word (mapconcat 'identity options " ")))) + (push "--output=json" options)) + (concat find-word " " (mapconcat 'identity options " ")))) (defun loga-word-cache (word) (cond ((<= loga-word-cache-limit (length loga-word-cache))