aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-06-05 15:42:10 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-06-05 15:42:10 +0000
commit51bd5e7bffead673baa5547cf7edd33835906a84 (patch)
treeeffa2b105e72dba1871b2a0c85133017a5c24ae5 /main.c
parent[w3m-dev 03204] INET6 (diff)
downloadw3m-51bd5e7bffead673baa5547cf7edd33835906a84.tar.gz
w3m-51bd5e7bffead673baa5547cf7edd33835906a84.zip
[w3m-dev 03206] Re: dict
* main.c (execdict): quote word From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index 134f67c..3ecd489 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.105 2002/06/05 15:29:37 ukai Exp $ */
+/* $Id: main.c,v 1.106 2002/06/05 15:42:10 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -4831,7 +4831,8 @@ execdict(char *word)
displayBuffer(Currentbuf, B_NORMAL);
return;
}
- dictcmd = Sprintf("%s?%s", DictCommand, w)->ptr;
+ dictcmd = Sprintf("%s?%s", DictCommand,
+ Str_form_quote(Strnew_charp(w))->ptr)->ptr;
buf = loadGeneralFile(dictcmd, NULL, NO_REFERER, 0, NULL);
if (buf == NULL) {
disp_message("Execution failed", FALSE);