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:
parent
2e4089abf2
commit
6199aad9a3
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user