changeset 93393:902b4a2f5421

(remember-diary-convert-entry): Prefer boundp to with-no-warnings.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sat, 29 Mar 2008 22:20:13 +0000
parents 471bffd76bbd
children 789028492ded
files lisp/ChangeLog lisp/textmodes/remember.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sat Mar 29 21:38:52 2008 +0000
+++ b/lisp/ChangeLog	Sat Mar 29 22:20:13 2008 +0000
@@ -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.
--- a/lisp/textmodes/remember.el	Sat Mar 29 21:38:52 2008 +0000
+++ b/lisp/textmodes/remember.el	Sat Mar 29 22:20:13 2008 +0000
@@ -481,7 +481,7 @@
         (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)