From 1d00ec2fa328878e62f4050097fd44b4425e195f Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 13 Nov 2025 17:26:51 -0600 Subject: fix: correct property names in org-drill-merge-buffers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed incorrect property names to match standard naming convention: - LAST_QUALITY → DRILL_LAST_QUALITY (lines 3394-3395) - LAST_REVIEWED → DRILL_LAST_REVIEWED (lines 3397-3398) This ensures consistency with the rest of the codebase where all drill properties use the DRILL_ prefix. The old names would create properties that don't match the standard schema and wouldn't be read correctly. --- org-drill.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/org-drill.el b/org-drill.el index b43af63..e1eea77 100644 --- a/org-drill.el +++ b/org-drill.el @@ -3391,11 +3391,11 @@ copy them across." (org-drill-store-item-data last-interval repetitions failures total-repeats meanq ease) (if last-quality - (org-set-property "LAST_QUALITY" last-quality) - (org-delete-property "LAST_QUALITY")) + (org-set-property "DRILL_LAST_QUALITY" last-quality) + (org-delete-property "DRILL_LAST_QUALITY")) (if last-reviewed - (org-set-property "LAST_REVIEWED" last-reviewed) - (org-delete-property "LAST_REVIEWED")) + (org-set-property "DRILL_LAST_REVIEWED" last-reviewed) + (org-delete-property "DRILL_LAST_REVIEWED")) (if scheduled-time (org-schedule nil scheduled-time)))))) (remhash id org-drill-dest-id-table) -- cgit v1.2.3