diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-11-20 13:45:48 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-11-20 13:45:48 +0100 |
| commit | 3187d324bd2439eeb93d46d72b0f795b242cab4b (patch) | |
| tree | b95891bde12310382995c294db20eae33860805b /local | |
| parent | 3e433a7062696797406c55e47fdab02747ce1945 (diff) | |
debug number-of-entries
Diffstat (limited to 'local')
| -rw-r--r-- | local/bibli-paris/bibli-paris.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/local/bibli-paris/bibli-paris.el b/local/bibli-paris/bibli-paris.el index 5083885..d092365 100644 --- a/local/bibli-paris/bibli-paris.el +++ b/local/bibli-paris/bibli-paris.el @@ -84,7 +84,9 @@ (defun bibli-paris/number-of-entries () "Return the number library entries in the current buffer." (interactive) - (message (length (org-map-entries (lambda () t))))) + (let ((result (length (org-map-entries (lambda () t))))) + (message "%d" result) + result)) ;; sort entries |
