From abbf3a9a25a136676999c0bc999d6b3615628006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Jadi?= Date: Wed, 27 Feb 2013 22:11:43 +0100 Subject: [PATCH] org-contacts.el: Rename a function to follow emacs-lisp coding conventions * contrib/lisp/org-contacts.el (org-contacts-db-need-update-p): Replace the '?' by a '-p'. (org-contacts-db): Use the new name. --- org-contacts.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-contacts.el b/org-contacts.el index 8674533..9045087 100644 --- a/org-contacts.el +++ b/org-contacts.el @@ -160,7 +160,7 @@ This overrides `org-email-link-description-format' if set." "Return list of Org files to use for contact management." (or org-contacts-files (org-agenda-files t 'ifmode))) -(defun org-contacts-db-need-update? () +(defun org-contacts-db-need-update-p () "Determine whether `org-contacts-db' needs to be refreshed." (or (null org-contacts-last-update) (some (lambda (file) @@ -174,7 +174,7 @@ This overrides `org-email-link-description-format' if set." (contacts-matcher (cdr (org-make-tags-matcher org-contacts-matcher))) markers result) - (when (org-contacts-db-need-update?) + (when (org-contacts-db-need-update-p) (message "Update Org Contacts Database") (dolist (file (org-contacts-files)) (org-check-agenda-file file)