]> git.eshelyaron.com Git - emacs.git/commitdiff
(remember-diary-convert-entry): Prefer boundp to with-no-warnings.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 29 Mar 2008 22:20:13 +0000 (22:20 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 29 Mar 2008 22:20:13 +0000 (22:20 +0000)
lisp/ChangeLog
lisp/textmodes/remember.el

index 5b0c18b60bc0c6df52edf9415a6d0101990396c6..50d418df4a21e097b2e40cb9d44dd993db082768 100644 (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.
index 459bf5b7898832d994741dc218ad49252b6893f2..317ddd43adb446c914d5132fe8fb8a03a5d912bf 100644 (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)