Index: src/org/openstreetmap/josm/actions/DeleteAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/DeleteAction.java	(revision 16360)
+++ src/org/openstreetmap/josm/actions/DeleteAction.java	(working copy)
@@ -95,7 +95,7 @@
             Collection<? extends OsmPrimitive> ignore) {
         return checkAndConfirmOutlyingOperation("delete",
                 tr("Delete confirmation"),
-                tr("You are about to delete nodes outside of the area you have downloaded."
+                tr("You are about to delete nodes not inside any area you have downloaded."
                         + "<br>"
                         + "This can cause problems because other objects (that you do not see) might use them."
                         + "<br>"
Index: src/org/openstreetmap/josm/actions/JoinAreasAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/JoinAreasAction.java	(revision 16360)
+++ src/org/openstreetmap/josm/actions/JoinAreasAction.java	(working copy)
@@ -519,8 +519,8 @@
 
         // TODO: Only display this warning when nodes outside dataSourceArea are deleted
         boolean ok = checkAndConfirmOutlyingOperation("joinarea", tr("Join area confirmation"),
-                trn("The selected way has nodes outside of the downloaded data region.",
-                    "The selected ways have nodes outside of the downloaded data region.",
+                trn("The selected way has nodes not inside any area you have downloaded.",
+                    "The selected ways have nodes not inside any area you have downloaded.",
                     ways.size()) + "<br/>"
                     + tr("This can lead to nodes being deleted accidentally.") + "<br/>"
                     + tr("Are you really sure to continue?")
Index: src/org/openstreetmap/josm/actions/JosmAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/JosmAction.java	(revision 16360)
+++ src/org/openstreetmap/josm/actions/JosmAction.java	(working copy)
@@ -495,10 +495,11 @@
     /**
      * Check whether user is about to operate on data outside of the download area.
      * Request confirmation if he is.
+     * Also handles the case that there is no download area.
      *
      * @param operation the operation name which is used for setting some preferences
      * @param dialogTitle the title of the dialog being displayed
-     * @param outsideDialogMessage the message text to be displayed when data is outside of the download area
+     * @param outsideDialogMessage the message text to be displayed when data is outside of the download area or no download area exists
      * @param incompleteDialogMessage the message text to be displayed when data is incomplete
      * @param primitives the primitives to operate on
      * @param ignore {@code null} or a primitive to be ignored
Index: src/org/openstreetmap/josm/actions/UnGlueAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/UnGlueAction.java	(revision 16363)
+++ src/org/openstreetmap/josm/actions/UnGlueAction.java	(working copy)
@@ -503,7 +503,7 @@
             primitives.add(selectedNode);
         final boolean ok = checkAndConfirmOutlyingOperation("unglue",
                 tr("Unglue confirmation"),
-                tr("You are about to unglue nodes outside of the area you have downloaded."
+                tr("You are about to unglue nodes not inside any area you have downloaded."
                         + "<br>"
                         + "This can cause problems because other objects (that you do not see) might use them."
                         + "<br>"
Index: src/org/openstreetmap/josm/command/Command.java
===================================================================
--- src/org/openstreetmap/josm/command/Command.java	(revision 16360)
+++ src/org/openstreetmap/josm/command/Command.java	(working copy)
@@ -228,7 +228,8 @@
             if (osm.isIncomplete()) {
                 res |= IS_INCOMPLETE;
             } else if (osm.isOutsideDownloadArea()
-                    && (ignore == null || !ignore.contains(osm))) {
+                    || (!osm.isNew() && osm.getDataSet() != null && osm.getDataSet().getDataSourceBounds().isEmpty())
+                            && (ignore == null || !ignore.contains(osm))) {
                 res |= IS_OUTSIDE;
             }
         }
