aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Steingold2001-10-11 21:12:47 +0000
committerSam Steingold2001-10-11 21:12:47 +0000
commitf059e1229b2bdfc48212fd37d0f7807d50a343af (patch)
tree6f3eed27717895b08dafd33185749a08441db8fa
parentadb6f9dc927d210c59f7f2f165b672f46eb09c2e (diff)
downloademacs-f059e1229b2bdfc48212fd37d0f7807d50a343af.tar.gz
emacs-f059e1229b2bdfc48212fd37d0f7807d50a343af.zip
(calendar-mode-line-format): do not use #' on undefined functions
-rw-r--r--lisp/calendar/calendar.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index dda6cf95e67..054eca79839 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -1,6 +1,6 @@
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 Free Software Foundation, Inc. 4;; 2000, 2001 Free Software Foundation, Inc.
5 5
6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> 6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
@@ -93,7 +93,7 @@
93 93
94;;; Code: 94;;; Code:
95 95
96(eval-when-compile 96(eval-when-compile
97 (defvar displayed-month) 97 (defvar displayed-month)
98 (defvar displayed-year) 98 (defvar displayed-year)
99 (defvar calendar-month-name-array) 99 (defvar calendar-month-name-array)
@@ -2040,7 +2040,7 @@ the inserted text. Value is always t."
2040 (propertize (substitute-command-keys 2040 (propertize (substitute-command-keys
2041 "\\<calendar-mode-map>\\[scroll-calendar-left]") 2041 "\\<calendar-mode-map>\\[scroll-calendar-left]")
2042 'help-echo "mouse-2: scroll left" 2042 'help-echo "mouse-2: scroll left"
2043 'keymap (make-mode-line-mouse-map 'mouse-2 2043 'keymap (make-mode-line-mouse-map 'mouse-2
2044 #'scroll-calendar-left)) 2044 #'scroll-calendar-left))
2045 "Calendar" 2045 "Calendar"
2046 (concat 2046 (concat
@@ -2048,14 +2048,14 @@ the inserted text. Value is always t."
2048 (substitute-command-keys 2048 (substitute-command-keys
2049 "\\<calendar-mode-map>\\[calendar-goto-info-node] info") 2049 "\\<calendar-mode-map>\\[calendar-goto-info-node] info")
2050 'help-echo "mouse-2: read Info on Calendar" 2050 'help-echo "mouse-2: read Info on Calendar"
2051 'keymap (make-mode-line-mouse-map 'mouse-2 #'calendar-goto-info-node)) 2051 'keymap (make-mode-line-mouse-map 'mouse-2 'calendar-goto-info-node))
2052 "/" 2052 "/"
2053 (propertize 2053 (propertize
2054 (substitute-command-keys 2054 (substitute-command-keys
2055 "\\<calendar-mode-map>\\[calendar-other-month] other") 2055 "\\<calendar-mode-map>\\[calendar-other-month] other")
2056 'help-echo "mouse-2: choose another month" 2056 'help-echo "mouse-2: choose another month"
2057 'keymap (make-mode-line-mouse-map 2057 'keymap (make-mode-line-mouse-map
2058 'mouse-2 2058 'mouse-2
2059 (lambda () 2059 (lambda ()
2060 (interactive) 2060 (interactive)
2061 (call-interactively 2061 (call-interactively
@@ -2070,7 +2070,7 @@ the inserted text. Value is always t."
2070 (propertize (substitute-command-keys 2070 (propertize (substitute-command-keys
2071 "\\<calendar-mode-map>\\[scroll-calendar-right]") 2071 "\\<calendar-mode-map>\\[scroll-calendar-right]")
2072 'help-echo "mouse-2: scroll right" 2072 'help-echo "mouse-2: scroll right"
2073 'keymap (make-mode-line-mouse-map 2073 'keymap (make-mode-line-mouse-map
2074 'mouse-2 #'scroll-calendar-right))) 2074 'mouse-2 #'scroll-calendar-right)))
2075 "The mode line of the calendar buffer.") 2075 "The mode line of the calendar buffer.")
2076 2076