monnier pushed a commit to branch master
in repository elpa.
commit 1b355cb59d4267fde12300887ccbbd3e65f238c0
Author: Teemu Likonen <[email protected]>
Date: Sat Jun 27 14:46:52 2009 +0000
Poistetaan turha rivinvaihto prosessille lähetettävästä merkkijonosta
---
wcheck-mode.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/wcheck-mode.el b/wcheck-mode.el
index 85832fa..8d142ca 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -748,7 +748,7 @@ external process which handles LANGUAGE. Each string in
WORDLIST
is sent as separate line."
(let ((proc (wcheck-start-get-process language))
string)
- (setq string (concat "\n" (mapconcat 'identity wordlist "\n") "\n"))
+ (setq string (concat (mapconcat 'identity wordlist "\n") "\n"))
(process-send-string proc string)
string))