summaryrefslogtreecommitdiff
path: root/lisp/calendar/holidays.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-04-27 18:48:16 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-04-27 18:48:24 +0200
commitcb5f7454273dcac10c00f5a869aa246ba3285a5f (patch)
tree56c3b50e0ac7670617f0be97b5db5e39d0fb5c48 /lisp/calendar/holidays.el
parentabc92b0d5609a9b2d3ef7d217ea25229db633ca2 (diff)
downloademacs-cb5f7454273dcac10c00f5a869aa246ba3285a5f.tar.gz
Fix some typos in the recent holidays change
* lisp/calendar/holidays.el (holiday-available-holiday-lists): Fix typos.
Diffstat (limited to 'lisp/calendar/holidays.el')
-rw-r--r--lisp/calendar/holidays.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el
index 89f8219edcb..7e11044dbc0 100644
--- a/lisp/calendar/holidays.el
+++ b/lisp/calendar/holidays.el
@@ -400,7 +400,7 @@ This function is suitable for execution in an init file."
(displayed-year (calendar-extract-year date)))
(calendar-list-holidays))))
-(defun holiday-available-holyday-lists ()
+(defun holiday-available-holiday-lists ()
"Return a list of all holiday lists.
This is used by `list-holidays', and you can customize the return
value by using `add-function'."
@@ -454,8 +454,8 @@ of a holiday list.
The optional LABEL is used to label the buffer created.
The list of holiday lists is computed by the
-`holiday-available-holyday-lists' and you can alter the results
-by redefining that function, or use `add-function' to all
+`holiday-available-holiday-lists' and you can alter the results
+by redefining that function, or use `add-function' to add
values."
(interactive
(let* ((start-year (calendar-read-sexp
@@ -468,7 +468,7 @@ values."
start-year
start-year))
(completion-ignore-case t)
- (lists (holiday-available-holyday-lists))
+ (lists (holiday-available-holiday-lists))
(choice (capitalize
(completing-read "List (TAB for choices): " lists nil t)))
(which (if (string-equal choice "Ask")