diff options
| author | Glenn Morris | 2007-11-27 04:16:37 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-27 04:16:37 +0000 |
| commit | e6819dc23c1d166235cb0fd0fada85db54e9d791 (patch) | |
| tree | d50ca62c128097ea0674dec5a3ff8f1ff4e43ff1 | |
| parent | 519d8c1923d738dfe5f310f80008313ae412f8a6 (diff) | |
| download | emacs-e6819dc23c1d166235cb0fd0fada85db54e9d791.tar.gz emacs-e6819dc23c1d166235cb0fd0fada85db54e9d791.zip | |
Re-fill copyright years.
(nongregorian-diary-listing-hook): Doc fix.
(Info-find-emacs-command-nodes, Info-find-node): Declare as functions.
| -rw-r--r-- | lisp/calendar/calendar.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index c252341526a..d49667d2810 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | ;;; calendar.el --- calendar functions | 1 | ;;; calendar.el --- calendar functions |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997, | 3 | ;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997, |
| 4 | ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. | 4 | ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
| 5 | ;; Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | 7 | ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> |
| 7 | ;; Maintainer: Glenn Morris <rgm@gnu.org> | 8 | ;; Maintainer: Glenn Morris <rgm@gnu.org> |
| @@ -818,7 +819,7 @@ diary buffer, set the variable `diary-list-include-blanks' to t." | |||
| 818 | As the files are processed for diary entries, these functions are used | 819 | As the files are processed for diary entries, these functions are used |
| 819 | to cull relevant entries. You can use either or both of | 820 | to cull relevant entries. You can use either or both of |
| 820 | `list-hebrew-diary-entries', `list-islamic-diary-entries' and | 821 | `list-hebrew-diary-entries', `list-islamic-diary-entries' and |
| 821 | `list-bahai-diary-entries'. The documentation for these functions | 822 | `diary-bahai-list-entries'. The documentation for these functions |
| 822 | describes the style of such diary entries." | 823 | describes the style of such diary entries." |
| 823 | :type 'hook | 824 | :type 'hook |
| 824 | :options '(list-hebrew-diary-entries | 825 | :options '(list-hebrew-diary-entries |
| @@ -2444,6 +2445,11 @@ under the cursor: | |||
| 2444 | (select-window (posn-window (event-start event))) | 2445 | (select-window (posn-window (event-start event))) |
| 2445 | (call-interactively 'calendar-other-month))) | 2446 | (call-interactively 'calendar-other-month))) |
| 2446 | 2447 | ||
| 2448 | ;; (require 'info) will define these. | ||
| 2449 | (declare-function Info-find-emacs-command-nodes "info" (command)) | ||
| 2450 | (declare-function Info-find-node "info" | ||
| 2451 | (filename nodename &optional no-going-back)) | ||
| 2452 | |||
| 2447 | (defun calendar-goto-info-node () | 2453 | (defun calendar-goto-info-node () |
| 2448 | "Go to the info node for the calendar." | 2454 | "Go to the info node for the calendar." |
| 2449 | (interactive) | 2455 | (interactive) |