aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-03-15 02:57:13 +0000
committerGlenn Morris2008-03-15 02:57:13 +0000
commit965c8899063f3ee626a19f454d3dc131b5b0f5a3 (patch)
treedd3417cca427b511450e995e680c91219d30f806
parenta078051c4aa530f410a545187ffe8cc72e71a136 (diff)
downloademacs-965c8899063f3ee626a19f454d3dc131b5b0f5a3.tar.gz
emacs-965c8899063f3ee626a19f454d3dc131b5b0f5a3.zip
(cal-menu-goto-menu): Use "Go To".
-rw-r--r--lisp/calendar/cal-menu.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/cal-menu.el b/lisp/calendar/cal-menu.el
index e87e4729eb3..ac551572691 100644
--- a/lisp/calendar/cal-menu.el
+++ b/lisp/calendar/cal-menu.el
@@ -1,7 +1,7 @@
1;;; cal-menu.el --- calendar functions for menu bar and popup menu support 1;;; cal-menu.el --- calendar functions for menu bar and popup menu support
2 2
3;; Copyright (C) 1994, 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 3;; Copyright (C) 1994, 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4;; Free Software Foundation, Inc. 4;; 2008 Free Software Foundation, Inc.
5 5
6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> 6;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7;; Lara Rios <lrios@coewl.cen.uiuc.edu> 7;; Lara Rios <lrios@coewl.cen.uiuc.edu>
@@ -161,7 +161,7 @@
161 ["Mark Holidays" mark-calendar-holidays])) 161 ["Mark Holidays" mark-calendar-holidays]))
162 162
163(defconst cal-menu-goto-menu 163(defconst cal-menu-goto-menu
164 '("Goto" 164 '("Go To"
165 ["Today" calendar-goto-today] 165 ["Today" calendar-goto-today]
166 ["Beginning of Week" calendar-beginning-of-week] 166 ["Beginning of Week" calendar-beginning-of-week]
167 ["End of Week" calendar-end-of-week] 167 ["End of Week" calendar-end-of-week]
@@ -235,7 +235,7 @@ ERROR is non-nil, otherwise just returns nil."
235 (calendar-cursor-to-date error))) 235 (calendar-cursor-to-date error)))
236 236
237(defun calendar-mouse-goto-date (date) 237(defun calendar-mouse-goto-date (date)
238 "Goto DATE in the buffer specified by `last-input-event'." 238 "Go to DATE in the buffer specified by `last-input-event'."
239 (set-buffer (window-buffer (posn-window (event-start last-input-event)))) 239 (set-buffer (window-buffer (posn-window (event-start last-input-event))))
240 (calendar-goto-date date)) 240 (calendar-goto-date date))
241 241