aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-06-09 16:09:24 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-06-09 16:09:24 +0000
commit1756f4887ec0bbb61f8dd2233c0d45a391d485d3 (patch)
tree21a8def7083746ea1af619e6bcda3e68759d7d8d
parent[w3m-dev 03207] strchr(), strcasecmp(), and strncasecmp() (diff)
downloadw3m-1756f4887ec0bbb61f8dd2233c0d45a391d485d3.tar.gz
w3m-1756f4887ec0bbb61f8dd2233c0d45a391d485d3.zip
[w3m-dev-en 00751] Re: tab completion weirdness in w3m 0.3
* main.c (svBuf): unescape spaces when input is filename * proto.h (unescape_spaces): added From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
-rw-r--r--ChangeLog8
-rw-r--r--main.c21
-rw-r--r--proto.h3
3 files changed, 21 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index bf9999c..4695b7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-10 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
+
+ * [w3m-dev-en 00751] Re: tab completion weirdness in w3m 0.3
+ * main.c (svBuf): unescape spaces when input is filename
+ * proto.h (unescape_spaces): added
+
2002-06-08 Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
* [w3m-dev 03207] strchr(), strcasecmp(), and strncasecmp()
@@ -3482,4 +3488,4 @@
* release-0-2-1
* import w3m-0.2.1
-$Id: ChangeLog,v 1.386 2002/06/07 15:46:44 ukai Exp $
+$Id: ChangeLog,v 1.387 2002/06/09 16:09:24 ukai Exp $
diff --git a/main.c b/main.c
index 3ecd489..8338db4 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.106 2002/06/05 15:42:10 ukai Exp $ */
+/* $Id: main.c,v 1.107 2002/06/09 16:09:25 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -3971,26 +3971,29 @@ svI(void)
void
svBuf(void)
{
- char *file;
+ char *qfile = NULL, *file;
FILE *f;
int is_pipe;
CurrentKeyData = NULL; /* not allowed in w3m-control: */
file = searchKeyData();
if (file == NULL || *file == '\0') {
- file = inputLineHist("Save buffer to: ", NULL, IN_COMMAND, SaveHist);
- }
- if (file != NULL)
- file = conv_to_system(file);
- if (file == NULL || *file == '\0') {
- displayBuffer(Currentbuf, B_FORCE_REDRAW);
- return;
+ qfile = inputLineHist("Save buffer to: ", NULL, IN_COMMAND, SaveHist);
+ if (qfile == NULL || *qfile == '\0') {
+ displayBuffer(Currentbuf, B_FORCE_REDRAW);
+ return;
+ }
}
+ file = conv_to_system(qfile ? qfile : file);
if (*file == '|') {
is_pipe = TRUE;
f = popen(file + 1, "w");
}
else {
+ if (qfile) {
+ file = unescape_spaces(Strnew_charp(qfile))->ptr;
+ file = conv_to_system(file);
+ }
file = expandName(file);
if (checkOverWrite(file) < 0)
return;
diff --git a/proto.h b/proto.h
index 7a7e82d..695d16e 100644
--- a/proto.h
+++ b/proto.h
@@ -1,4 +1,4 @@
-/* $Id: proto.h,v 1.43 2002/06/01 17:09:05 ukai Exp $ */
+/* $Id: proto.h,v 1.44 2002/06/09 16:09:25 ukai Exp $ */
/*
* This file was automatically generated by version 1.7 of cextract.
* Manual editing not recommended.
@@ -293,6 +293,7 @@ extern void escdmap(char c);
extern char *inputLineHistSearch(char *prompt, char *def_str, int flag,
Hist *hist, int (*incfunc) (int ch, Str buf,
Lineprop *prop));
+extern Str unescape_spaces(Str s);
#ifdef USE_HISTORY
extern Buffer *historyBuffer(Hist *hist);
extern void loadHistory(Hist *hist);