Index: src/org/openstreetmap/josm/actions/JumpToAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/JumpToAction.java	(revision 19082)
+++ src/org/openstreetmap/josm/actions/JumpToAction.java	(working copy)
@@ -175,6 +175,13 @@
             if (option != 1) return;
             if (place.hasFocus() && !place.getText().trim().isEmpty()) {
                 try {
+                    ll = LatLonParser.parse(place.getText());
+                    if (ll != null)
+                        break;
+                } catch (IllegalArgumentException ex) {
+                    Logging.info(ex);
+                }
+                try {
                     List<NameFinder.SearchResult> searchResults = NameFinder.queryNominatim(place.getText());
                     if (!searchResults.isEmpty()) {
                         NameFinder.SearchResult searchResult = searchResults.get(0);
