[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master 57020a8 08/11: Excorporate: Fix some byte compiler warning
From: |
Thomas Fitzsimmons |
Subject: |
[elpa] master 57020a8 08/11: Excorporate: Fix some byte compiler warnings |
Date: |
Thu, 24 Sep 2020 21:54:53 -0400 (EDT) |
branch: master
commit 57020a8fd7da091f8093cc3187e5c5d64b8db2d9
Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Commit: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Excorporate: Fix some byte compiler warnings
* packages/excorporate/excorporate-org.el
(exco-org--reply-to-meeting): Mark identifier in callback as
unused.
(exco-org-cancel-meeting): Likewise.
(exco-org-delete-appointment): Likewise.
---
packages/excorporate/excorporate-org.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/excorporate/excorporate-org.el
b/packages/excorporate/excorporate-org.el
index f6edc05..e4d46a8 100644
--- a/packages/excorporate/excorporate-org.el
+++ b/packages/excorporate/excorporate-org.el
@@ -136,7 +136,7 @@ message."
(item-identifier (exco-org--item-identifier-at-point)))
(exco-calendar-item-meeting-reply
identifier item-identifier message acceptance
- (lambda (identifier response)
+ (lambda (_identifier response)
(exco-org--handle-response response CreateItemResponseMessage
success failure))))))
@@ -178,7 +178,7 @@ text."
(exco-calendar-item-meeting-cancel
identifier item-identifier
(read-from-minibuffer "Cancellation message: ")
- (lambda (identifier response)
+ (lambda (_identifier response)
(exco-org--handle-response
response CreateItemResponseMessage
"cancelled meeting" "cancel meeting"
@@ -194,7 +194,7 @@ text."
(when item-identifier
(exco-calendar-item-appointment-delete
identifier item-identifier
- (lambda (identifier response)
+ (lambda (_identifier response)
(exco-org--handle-response
response DeleteItemResponseMessage
"deleted appointment" "delete appointment"
- [elpa] master updated (fdfd986 -> 9ce646f), Thomas Fitzsimmons, 2020/09/24
- [elpa] master ba7b6c9 05/11: Excorporate: Add some helper functions to Org backend, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 9ce646f 11/11: Excorporate: Document API usage in manual, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 030ea89 02/11: Excorporate: Adjust some documentation strings, Thomas Fitzsimmons, 2020/09/24
- [elpa] master a078150 01/11: Excorporate: Support replying to meeting requests, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 05bd7d0 03/11: Excorporate: Change organizer representation, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 5281378 04/11: Excorporate: Add an organizer resolver function, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 5df7dfd 06/11: Excorporate: Simplify organizer handling in Org backend, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 3bd310b 07/11: Excorporate: Support replying to meeting requests in Org buffer, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 57020a8 08/11: Excorporate: Fix some byte compiler warnings,
Thomas Fitzsimmons <=
- [elpa] master 064a111 09/11: Excorporate: Require Org 9.0 or newer, Thomas Fitzsimmons, 2020/09/24
- [elpa] master 137f24e 10/11: Excorporate: Document new interactive functions, Thomas Fitzsimmons, 2020/09/24