[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote fd880f15a5 06/11: Remove denote--increment-ident
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote fd880f15a5 06/11: Remove denote--increment-identifier and denote--return-new-identifier-if-duplicate |
Date: |
Sun, 8 Oct 2023 03:57:49 -0400 (EDT) |
branch: externals/denote
commit fd880f15a5bfbf23d51b687f3768d6136cb916fd
Author: Jean-Philippe Gagné Guay <jeanphilippe150@gmail.com>
Commit: Jean-Philippe Gagné Guay <jeanphilippe150@gmail.com>
Remove denote--increment-identifier and
denote--return-new-identifier-if-duplicate
---
denote.el | 13 -------------
1 file changed, 13 deletions(-)
diff --git a/denote.el b/denote.el
index 414d2ab021..09694d5a29 100644
--- a/denote.el
+++ b/denote.el
@@ -1690,19 +1690,6 @@ increment it 1 second at a time until an available id is
found."
(setq time (time-add time 1)))
(format-time-string denote--id-format time)))
-(defun denote--increment-identifier (identifier)
- "Increment IDENTIFIER.
-Preserve the date component and append to it the current time."
- (let* ((datetime (split-string identifier "T"))
- (date (car datetime)))
- (concat date "T" (format-time-string "%H%M%S"))))
-
-(defun denote--return-new-identifier-if-duplicate (identifier)
- "Return new unique identifier if IDENTIFIER already exists."
- (while (denote--id-exists-p identifier)
- (setq identifier (denote--increment-identifier identifier)))
- identifier)
-
(define-obsolete-function-alias
'denote--barf-duplicate-id
'denote-barf-duplicate-id
- [elpa] externals/denote 8c140344e0 03/11: Remove 'denote-barf-duplicate-id' and make 'denote' avoid duplicate ids, (continued)
- [elpa] externals/denote 8c140344e0 03/11: Remove 'denote-barf-duplicate-id' and make 'denote' avoid duplicate ids, ELPA Syncer, 2023/10/08
- [elpa] externals/denote c12d4fdb21 02/11: Add 'denote--get-all-used-ids' and 'denote--find-first-unused-id', ELPA Syncer, 2023/10/08
- [elpa] externals/denote 89237ceafd 01/11: Remove files parameter, ELPA Syncer, 2023/10/08
- [elpa] externals/denote a090eb007c 04/11: Add optional parameter no-error to denote-retrieve-filename-identifier, ELPA Syncer, 2023/10/08
- [elpa] externals/denote 03b510f640 05/11: Remove function denote-retrieve-or-create-filename-identifier, ELPA Syncer, 2023/10/08
- [elpa] externals/denote 05a18e36fc 11/11: Fix typo in denote-link-return-backlinks, ELPA Syncer, 2023/10/08
- [elpa] externals/denote c9d024ec30 07/11: Update README.org with new functions, ELPA Syncer, 2023/10/08
- [elpa] externals/denote c5e73c2c99 08/11: Use non obsolete variables, ELPA Syncer, 2023/10/08
- [elpa] externals/denote 1d0eebf7d3 10/11: Merge pull request #159 from jeanphilippegg/duplicate-ids, ELPA Syncer, 2023/10/08
- [elpa] externals/denote fe0659b2f0 09/11: Mention 'denote-link-with-signature' in 'denote-prompts' documentation, ELPA Syncer, 2023/10/08
- [elpa] externals/denote fd880f15a5 06/11: Remove denote--increment-identifier and denote--return-new-identifier-if-duplicate,
ELPA Syncer <=