mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
bug 978: Python's webbrowser.open_new_tab(URL) works since now.
This commit is contained in:
parent
5477c215f4
commit
2e926b7d4b
1
NEWS
1
NEWS
@ -45,6 +45,7 @@ To be released as 0.11.4.
|
||||
* build: disable GCC 4.2 warning about builtin_modules
|
||||
* minor build bug 960: fix errors in loadmsgcat.c if mmap() exists but
|
||||
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
|
||||
|
@ -298,9 +298,12 @@ remote_cmd(struct option *o, unsigned char ***argv, int *argc)
|
||||
|
||||
} else {
|
||||
end = strchr(start, ',');
|
||||
if (!end)
|
||||
if (!end) {
|
||||
end = start + strlen(start);
|
||||
arg = end;
|
||||
arg = end;
|
||||
} else {
|
||||
arg = end + 1;
|
||||
}
|
||||
skipback_whitespace(start, end);
|
||||
|
||||
if (start != end)
|
||||
|
Loading…
Reference in New Issue
Block a user