aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-13 17:26:51 -0600
committerCraig Jennings <c@cjennings.net>2025-11-13 17:26:51 -0600
commit1d00ec2fa328878e62f4050097fd44b4425e195f (patch)
tree39268371dcee33a50e0f09c47c50965cdcf52af6
parent973f4d399600f2a4891fd2f22f2d7d60e3053f4f (diff)
downloadorg-drill-1d00ec2fa328878e62f4050097fd44b4425e195f.tar.gz
org-drill-1d00ec2fa328878e62f4050097fd44b4425e195f.zip
fix: correct property names in org-drill-merge-buffers
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.
-rw-r--r--org-drill.el8
1 files 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)