1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

bug 978: Python's webbrowser.open_new_tab(URL) works since now.

This commit is contained in:
Witold Filipczyk 2007-11-22 19:09:20 +01:00 committed by Witold Filipczyk
parent dee220026d
commit 871b4b09dd
2 changed files with 6 additions and 2 deletions

1
NEWS
View File

@ -321,6 +321,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

View File

@ -301,9 +301,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)