From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x332.google.com (mail-ot1-x332.google.com [IPv6:2607:f8b0:4864:20::332]) by sourceware.org (Postfix) with ESMTPS id 8DB023858C2B for ; Mon, 18 Sep 2023 21:25:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8DB023858C2B Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ot1-x332.google.com with SMTP id 46e09a7af769-6bf04263dc8so3370635a34.3 for ; Mon, 18 Sep 2023 14:25:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1695072330; x=1695677130; darn=sourceware.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=olz4Vtk1CEeNgn5BACJ7PXUu0ffF3vG8y8gXsOi8pTY=; b=RVlwMA9oOwVeG+5g1S952+9/RWBpfcjemWj0DstTQNAGSkM8V1pg1M8cMbS2U6VT4V ENMUG9GYBYvmzpNZyVkJFAxGIngAKlwGFg+VhcdYDI5ajxhoBsHk7HfMgLCFP0psbz4F /PUZT9+bLf3W8+Jm4V4FSTvwHBSwEroZHFVVsxE0Eif37rW87KIN/fUsG3BzarUoMhn9 LqzAvEyAEG2Fr8IdxrRZ2vgkayvjDyH3s/qcHFfOpVuYSnk4ycj5J2hRSCPjmG10b4RV s5Tk7TUJ1+8E2ErrIZRwXnXCWK0enqOmLzzXR5CrObXrczxi+5N3Ts5tKnyaaqfRvpoV 1iyA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1695072330; x=1695677130; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=olz4Vtk1CEeNgn5BACJ7PXUu0ffF3vG8y8gXsOi8pTY=; b=XK3XP2LAZH/NhPip3e3BPVc2ac0M9niQFaiV7YPq/MVm7GWN5tgrqKYRGtZSV+yKA4 D5jVLZlo3QOuwRqXkqLxBiXwYpazNmUZr/PLCRkc9id91HAvJW7U9Kmil/v3q9jiCQjc GGAjczOvXvrAKjdw5luOc66U4pWKIevONUMq0LhScj/smLzLo43Fa5YlP1M81MZpqc5C bgOzE0WJ+qrvsk0daZpdrDfLmrKeYF/5N5XHIzQZegLadIdlpY82CEmRNphp+JyJBGhj tN+TP1rkl02NgtoeNBsYcTBvFcNmJP2N9+3XAjQpClDcGN7Vltf2CydoPVVImacGrFd6 FCzQ== X-Gm-Message-State: AOJu0Yx1D9EzcWISd1UCsA7vnsdQbJdIEC6mjpNgyNHYv3vj8SLqx6n5 Iwq68xmgJTpVfv56yQF7R8nUztaxAoIgahewsH6MMKPaBQg= X-Google-Smtp-Source: AGHT+IGHcvCfWnzZ3TRhpPnygC/5ktBrg0O/LZTk3ACgW+M1zrR9BhvZ/i/LM57N7iwaDUaWGfvDTGvces31tDZpWS0= X-Received: by 2002:a9d:4e90:0:b0:6b8:67bf:fdf2 with SMTP id v16-20020a9d4e90000000b006b867bffdf2mr11099444otk.11.1695072329659; Mon, 18 Sep 2023 14:25:29 -0700 (PDT) MIME-Version: 1.0 From: Panicz Maciej Godek Date: Mon, 18 Sep 2023 23:25:18 +0200 Message-ID: Subject: Spurious line numbers To: kawa Content-Type: multipart/alternative; boundary="00000000000013f9350605a8c86a" X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --00000000000013f9350605a8c86a Content-Type: text/plain; charset="UTF-8" I have a question. Recently, I've been developing a module called "stepper", and as I occasionally get some stack traces, they look more or less like this: at gnu.mapping.Procedure.apply2(Procedure.java:160) at stepper$frame7.lambda33reduce(stepper.scm:10145) at stepper$frame7.lambda33reduce(stepper.scm:10108) at stepper.reduce$check(stepper.scm:541) The problem with the second and the third line is that the stepper module contains some 700 lines, so that the lines 10145 and 10108 don't even exist. What is the likely reason for this behavior? (I can help reproduce it if needed - in the sources of GRASP - but I don't think I'll find time to build a minimal reproducible example) --00000000000013f9350605a8c86a--