aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-09-22 07:15:31 +0000
committerGlenn Morris2009-09-22 07:15:31 +0000
commitd8899a74164722c9f6f04f095b32def2932c261b (patch)
tree8a2d2ddf42e5b44cbe704ecc8e90ab9964253f03
parent49b289c04616e5ba9706a841aaee0904004de3d0 (diff)
downloademacs-d8899a74164722c9f6f04f095b32def2932c261b.tar.gz
emacs-d8899a74164722c9f6f04f095b32def2932c261b.zip
(cal-menu-scroll-menu): Add a sub-section with commands that move
point (as opposed to scrolling).
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/calendar/cal-menu.el13
2 files changed, 15 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a1bfe168961..a4548a9dae5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-09-22 Glenn Morris <rgm@gnu.org> 12009-09-22 Glenn Morris <rgm@gnu.org>
2 2
3 * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
4 commands that move point (as opposed to scrolling).
5
3 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler. 6 * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
4 7
5 * emacs-lisp/elint.el (elint): New custom group. 8 * emacs-lisp/elint.el (elint): New custom group.
diff --git a/lisp/calendar/cal-menu.el b/lisp/calendar/cal-menu.el
index d60daaafc1c..e39e181dbed 100644
--- a/lisp/calendar/cal-menu.el
+++ b/lisp/calendar/cal-menu.el
@@ -145,12 +145,23 @@
145 145
146(defconst cal-menu-scroll-menu 146(defconst cal-menu-scroll-menu
147 '("Scroll" 147 '("Scroll"
148 ["Scroll Commands" nil :help "Commands that scroll the visible window"]
148 ["Forward 1 Month" calendar-scroll-left] 149 ["Forward 1 Month" calendar-scroll-left]
149 ["Forward 3 Months" calendar-scroll-left-three-months] 150 ["Forward 3 Months" calendar-scroll-left-three-months]
150 ["Forward 1 Year" (calendar-scroll-left 12) :keys "4 C-v"] 151 ["Forward 1 Year" (calendar-scroll-left 12) :keys "4 C-v"]
151 ["Backward 1 Month" calendar-scroll-right] 152 ["Backward 1 Month" calendar-scroll-right]
152 ["Backward 3 Months" calendar-scroll-right-three-months] 153 ["Backward 3 Months" calendar-scroll-right-three-months]
153 ["Backward 1 Year" (calendar-scroll-right 12) :keys "4 M-v"]) 154 ["Backward 1 Year" (calendar-scroll-right 12) :keys "4 M-v"]
155 "--"
156 ["Motion Commands" nil :help "Commands that move point"]
157 ["Forward 1 Day" calendar-forward-day]
158 ["Forward 1 Week" calendar-forward-week]
159 ["Forward 1 Month" calendar-forward-month]
160 ["Forward 1 Year" calendar-forward-year]
161 ["Backward 1 Day" calendar-backward-day]
162 ["Backward 1 Week" calendar-backward-week]
163 ["Backward 1 Month" calendar-backward-month]
164 ["Backward 1 Year" calendar-backward-year])
154 "Key map for \"Scroll\" menu in the calendar.") 165 "Key map for \"Scroll\" menu in the calendar.")
155 166
156(declare-function x-popup-menu "xmenu.c" (position menu)) 167(declare-function x-popup-menu "xmenu.c" (position menu))