Skip to content

Commit a313164

Browse files
author
Andy Townsend
committed
Change squiggly brackets at the start of appended bridge refs
to round brackets.
1 parent 4a89dc6 commit a313164

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This page describes changes made in these projects: [SomeoneElse-style](https://
1010
(raster, vector) Show noncommercial art galleries with a unique museum-like icon.
1111
(raster, vector) Handle more semicolon values. Apart from some special cases, shops with semicolon values just use the first part.
1212
(raster) Show access=no and access=destination on roads shown as unpaved (no change needed to vector - that was already OK)
13+
(raster, vector) Change squiggly brackets at the start of appended bridge refs to round brackets.
1314

1415
## 03/07/2025
1516
(raster, vector) Show `wheelchair` flash on `amenity=fast_food` with `cuisine=kebab`, `cuisine=mexican` and synonyms.

shared_lua.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6539,9 +6539,9 @@ function consolidate_lua_03_t( passedt )
65396539
( passedt.waterway ~= "" )))) then
65406540
if (( passedt.name == nil ) or
65416541
( passedt.name == "" )) then
6542-
passedt.name = "{" .. passedt.bridge_ref .. ")"
6542+
passedt.name = "(" .. passedt.bridge_ref .. ")"
65436543
else
6544-
passedt.name = passedt.name .. " {" .. passedt.bridge_ref .. ")"
6544+
passedt.name = passedt.name .. " (" .. passedt.bridge_ref .. ")"
65456545
end
65466546

65476547
passedt.bridge_ref = nil

0 commit comments

Comments
 (0)