1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-01 20:06:00 +00:00

(remember-diary-convert-entry): Prefer boundp to with-no-warnings.

This commit is contained in:
Stefan Monnier 2008-03-29 22:20:13 +00:00
parent 2e4089abf2
commit 6199aad9a3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
* textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
to with-no-warnings.
2008-03-29 Michael Albinus <michael.albinus@gmx.de>
Sync with Tramp 2.1.13.

View File

@ -481,7 +481,7 @@ If this is nil, then `diary-file' will be used instead."
(replace-match
(let ((style (if (boundp 'calendar-date-style)
calendar-date-style
(if (with-no-warnings european-calendar-style)
(if (bound-and-true-p european-calendar-style)
'european
'american))))
(cond ((eq style 'european)