]> git.eshelyaron.com Git - emacs.git/commitdiff
(holiday-list): Rename it back to `list-holidays', but leave
authorGlenn Morris <rgm@gnu.org>
Sat, 15 Sep 2007 19:59:25 +0000 (19:59 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 15 Sep 2007 19:59:25 +0000 (19:59 +0000)
`holiday-list' as an alias.

doc/emacs/ChangeLog
lisp/calendar/holidays.el

index c005fbaca0315ad0b6098463f72ea7f88e356600..5cc472a1d9e32f93a37cc1d77512b273560e362b 100644 (file)
@@ -1,3 +1,8 @@
+2007-09-15  Glenn Morris  <rgm@gnu.org>
+
+       * calendar.texi (Holidays): Change all instances of `holiday-list' back
+       to `list-holidays'.
+
 2007-09-14  Glenn Morris  <rgm@gnu.org>
 
        * calendar.texi: Update all instances of mark-calendar-holidays,
index a86fdad4d6e2825d27fa0655a3b4739d78c795fa..eaa6e4cb4743a468b1078c5c7917fd1f6efe08b9 100644 (file)
@@ -109,15 +109,17 @@ This function is suitable for execution in a .emacs file."
            (displayed-year (extract-calendar-year date)))
       (calendar-list-holidays))))
 
+;; rms: "Emacs commands to display a list of something generally start
+;; with `list-'.  Please make `list-holidays' the principal name."
 ;;;###autoload
-(defun holiday-list (y1 y2 &optional l label)
+(defun list-holidays (y1 y2 &optional l label)
   "Display holidays for years Y1 to Y2 (inclusive).
 
 The optional list of holidays L defaults to `calendar-holidays'.
 If you want to control what holidays are displayed, use a
 different list.  For example,
 
-  (holiday-list 2006 2006
+  (list-holidays 2006 2006
     (append general-holidays local-holidays other-holidays))
 
 will display holidays for the year 2006 defined in the 3
@@ -206,6 +208,7 @@ The optional LABEL is used to label the buffer created."
       (display-buffer holiday-buffer)
       (message "Computing holidays...done"))))
 
+(defalias 'holiday-list 'list-holidays)
 
 (defun calendar-check-holidays (date)
   "Check the list of holidays for any that occur on DATE.