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
66a85723
Commit
66a85723
authored
Nov 16, 2005
by
Stefan Monnier
Browse files
(diary-list-entries): Also hide the terminating newline.
parent
bf12aeee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
lisp/ChangeLog
lisp/ChangeLog
+7
-2
lisp/calendar/diary-lib.el
lisp/calendar/diary-lib.el
+2
-1
No files found.
lisp/ChangeLog
View file @
66a85723
2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
* calendar/diary-lib.el (diary-list-entries): Also hide the
terminating newline.
2005-11-16 Carsten Dominik <dominik@science.uva.nl>
* textmodes/reftex.el (reftex-use-fonts):
r
emove
d
the check for
window-system, to allow fonts on tty.
* textmodes/reftex.el (reftex-use-fonts):
R
emove the check for
window-system, to allow fonts on tty.
2005-11-17 Nick Roberts <nickrob@snap.net.nz>
...
...
lisp/calendar/diary-lib.el
View file @
66a85723
...
...
@@ -452,7 +452,8 @@ If LIST-ONLY is non-nil don't modify or display the buffer, only return a list."
2))
(while (looking-at "
\\|\^I")
(re-search-forward "\^M\\|\n
" nil 'move))
(unless (eobp) (backward-char 1))
(unless (and (eobp) (not (bolp)))
(backward-char 1))
(unless list-only
(remove-overlays date-start (point)
'invisible 'diary))
...
...
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