1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-02 08:57:19 -04:00

[bookmarks] Pipe character instead of semicolon.

This commit is contained in:
Witold Filipczyk 2021-08-22 16:20:59 +02:00
parent 679c2d160b
commit a11328c354

View File

@ -72,8 +72,8 @@ get_bookmark_text(struct listbox_item *item, struct terminal *term)
add_to_string(&tmp, bookmark->title);
if (with_urls) {
add_to_string(&tmp, " ; ");
if (with_urls && bookmark->url && *(bookmark->url)) {
add_to_string(&tmp, " | ");
add_to_string(&tmp, bookmark->url);
}