Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a04b6191
Commit
a04b6191
authored
Oct 06, 2005
by
Stefan Monnier
Browse files
(calendar-mouse-view-diary-entries): Use the new arg to diary-list-entries.
parent
1aee45ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
5 deletions
+27
-5
lisp/ChangeLog
lisp/ChangeLog
+26
-4
lisp/calendar/cal-menu.el
lisp/calendar/cal-menu.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a04b6191
2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
* calendar/cal-menu.el (calendar-mouse-view-diary-entries):
Use the new `list-only' arg to diary-list-entries.
* calendar/diary-lib.el: Use overlays rather than selective-display.
(diary-selective-display): New var.
(diary-header-line-format): Use it.
(diary-list-entries): Add argument `list-only'.
Put the buffer in diary-mode. Don't add \^M at beg and end.
Replace \^M by invisible overlays.
(diary-unhide-everything): Replace \^M by invisible overlays.
(print-diary-entries): Look for overlays rather than \^M.
Add a space to the temp buffer name.
(diary-show-all-entries, mark-diary-entries, make-diary-entry):
Put the buffer in diary-mode.
(list-sexp-diary-entries): Replace \^M by invisible overlays.
(diary-anniversary): Make the year arg optional.
(diary-time-regexp): New const.
(diary-font-lock-keywords): Use it to accept a few more time formats.
* pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
* textmodes/artist.el (artist-ellipse-mirror-quadrant):
...
...
@@ -15,8 +38,8 @@
2005-10-06 Kenichi Handa <handa@m17n.org>
* international/mule-cmds.el (set-language-environment):
Fix
setting up of case-table for unibyte mode.
* international/mule-cmds.el (set-language-environment):
Fix
setting up of case-table for unibyte mode.
* simple.el (what-cursor-position): If the character is displayed
by some `display' text property, show that. Don't use
...
...
@@ -26,8 +49,7 @@
* progmodes/gdb-ui.el (gdb-fringe-width): New variable.
(gdb-ann3): Set it.
(gdb-put-breakpoint-icon): Don't take fringe-width from speedbar
frame.
(gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
(gdb-info-frames-custom): Use inverse-video for first five
characters of selected frame only.
(gdb-get-frame-number): Select frame even when point is on frame
...
...
lisp/calendar/cal-menu.el
View file @
a04b6191
...
...
@@ -352,7 +352,7 @@ Any holidays are shown if `holidays-in-diary-buffer' is t."
(
diary-display-hook
'ignore
)
(
diary-entries
(
mapcar
(
lambda
(
x
)
(
split-string
(
car
(
cdr
x
))
"\^M\\|\n"
))
(
diary-list-entries
date
1
)))
(
diary-list-entries
date
1
'list-only
)))
(
holidays
(
if
holidays-in-diary-buffer
(
check-calendar-holidays
date
)))
(
title
(
concat
"Diary entries "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment