diff options
| author | Stefan Monnier | 2005-10-06 16:25:31 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-10-06 16:25:31 +0000 |
| commit | a04b6191a46d2da45d8a51858228f2811609847b (patch) | |
| tree | 4c31dac86799ba9d258b9a5dbce7cabd8de3915d | |
| parent | 1aee45ed44f7b975b937d3f8865491bea3d4e5cf (diff) | |
| download | emacs-a04b6191a46d2da45d8a51858228f2811609847b.tar.gz emacs-a04b6191a46d2da45d8a51858228f2811609847b.zip | |
(calendar-mouse-view-diary-entries): Use the new arg to diary-list-entries.
| -rw-r--r-- | lisp/ChangeLog | 30 | ||||
| -rw-r--r-- | lisp/calendar/cal-menu.el | 2 |
2 files changed, 27 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3504a7b4886..d79920134bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * calendar/cal-menu.el (calendar-mouse-view-diary-entries): | ||
| 4 | Use the new `list-only' arg to diary-list-entries. | ||
| 5 | |||
| 6 | * calendar/diary-lib.el: Use overlays rather than selective-display. | ||
| 7 | (diary-selective-display): New var. | ||
| 8 | (diary-header-line-format): Use it. | ||
| 9 | (diary-list-entries): Add argument `list-only'. | ||
| 10 | Put the buffer in diary-mode. Don't add \^M at beg and end. | ||
| 11 | Replace \^M by invisible overlays. | ||
| 12 | (diary-unhide-everything): Replace \^M by invisible overlays. | ||
| 13 | (print-diary-entries): Look for overlays rather than \^M. | ||
| 14 | Add a space to the temp buffer name. | ||
| 15 | (diary-show-all-entries, mark-diary-entries, make-diary-entry): | ||
| 16 | Put the buffer in diary-mode. | ||
| 17 | (list-sexp-diary-entries): Replace \^M by invisible overlays. | ||
| 18 | (diary-anniversary): Make the year arg optional. | ||
| 19 | (diary-time-regexp): New const. | ||
| 20 | (diary-font-lock-keywords): Use it to accept a few more time formats. | ||
| 21 | |||
| 22 | * pcvs.el (cvs-sentinel): Make sure we do re-enable undo. | ||
| 23 | |||
| 1 | 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org> | 24 | 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org> |
| 2 | 25 | ||
| 3 | * textmodes/artist.el (artist-ellipse-mirror-quadrant): | 26 | * textmodes/artist.el (artist-ellipse-mirror-quadrant): |
| @@ -15,8 +38,8 @@ | |||
| 15 | 38 | ||
| 16 | 2005-10-06 Kenichi Handa <handa@m17n.org> | 39 | 2005-10-06 Kenichi Handa <handa@m17n.org> |
| 17 | 40 | ||
| 18 | * international/mule-cmds.el (set-language-environment): Fix | 41 | * international/mule-cmds.el (set-language-environment): |
| 19 | setting up of case-table for unibyte mode. | 42 | Fix setting up of case-table for unibyte mode. |
| 20 | 43 | ||
| 21 | * simple.el (what-cursor-position): If the character is displayed | 44 | * simple.el (what-cursor-position): If the character is displayed |
| 22 | by some `display' text property, show that. Don't use | 45 | by some `display' text property, show that. Don't use |
| @@ -26,8 +49,7 @@ | |||
| 26 | 49 | ||
| 27 | * progmodes/gdb-ui.el (gdb-fringe-width): New variable. | 50 | * progmodes/gdb-ui.el (gdb-fringe-width): New variable. |
| 28 | (gdb-ann3): Set it. | 51 | (gdb-ann3): Set it. |
| 29 | (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar | 52 | (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame. |
| 30 | frame. | ||
| 31 | (gdb-info-frames-custom): Use inverse-video for first five | 53 | (gdb-info-frames-custom): Use inverse-video for first five |
| 32 | characters of selected frame only. | 54 | characters of selected frame only. |
| 33 | (gdb-get-frame-number): Select frame even when point is on frame | 55 | (gdb-get-frame-number): Select frame even when point is on frame |
diff --git a/lisp/calendar/cal-menu.el b/lisp/calendar/cal-menu.el index 870e0fb2f7f..d706dfd6ea3 100644 --- a/lisp/calendar/cal-menu.el +++ b/lisp/calendar/cal-menu.el | |||
| @@ -352,7 +352,7 @@ Any holidays are shown if `holidays-in-diary-buffer' is t." | |||
| 352 | (diary-display-hook 'ignore) | 352 | (diary-display-hook 'ignore) |
| 353 | (diary-entries | 353 | (diary-entries |
| 354 | (mapcar (lambda (x) (split-string (car (cdr x)) "\^M\\|\n")) | 354 | (mapcar (lambda (x) (split-string (car (cdr x)) "\^M\\|\n")) |
| 355 | (diary-list-entries date 1))) | 355 | (diary-list-entries date 1 'list-only))) |
| 356 | (holidays (if holidays-in-diary-buffer | 356 | (holidays (if holidays-in-diary-buffer |
| 357 | (check-calendar-holidays date))) | 357 | (check-calendar-holidays date))) |
| 358 | (title (concat "Diary entries " | 358 | (title (concat "Diary entries " |