mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
bug 978: Python's webbrowser.open_new_tab(URL) works since now.
This commit is contained in:
parent
cbcc0e8230
commit
588e914470
1
NEWS
1
NEWS
@ -316,6 +316,7 @@ To be released as 0.11.4.
|
|||||||
* build: disable GCC 4.2 warning about builtin_modules
|
* build: disable GCC 4.2 warning about builtin_modules
|
||||||
* minor build bug 960: fix errors in loadmsgcat.c if mmap() exists but
|
* minor build bug 960: fix errors in loadmsgcat.c if mmap() exists but
|
||||||
munmap() doesn't
|
munmap() doesn't
|
||||||
|
* bug 978: Python's webbrowser.open_new_tab(URL) works since now
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
The following changes should be removed from NEWS before ELinks 0.11.4
|
The following changes should be removed from NEWS before ELinks 0.11.4
|
||||||
|
@ -299,9 +299,12 @@ remote_cmd(struct option *o, unsigned char ***argv, int *argc)
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
end = strchr(start, ',');
|
end = strchr(start, ',');
|
||||||
if (!end)
|
if (!end) {
|
||||||
end = start + strlen(start);
|
end = start + strlen(start);
|
||||||
arg = end;
|
arg = end;
|
||||||
|
} else {
|
||||||
|
arg = end + 1;
|
||||||
|
}
|
||||||
skipback_whitespace(start, end);
|
skipback_whitespace(start, end);
|
||||||
|
|
||||||
if (start != end)
|
if (start != end)
|
||||||
|
Loading…
Reference in New Issue
Block a user