]> git.eshelyaron.com Git - emacs.git/commitdiff
gnus-util.el (gnus-bound-and-true-p): Another comment to explain why we don't use...
authorTeodor Zlatanov <tzz@lifelogs.com>
Wed, 2 Nov 2011 22:59:23 +0000 (22:59 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 2 Nov 2011 22:59:23 +0000 (22:59 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-util.el

index 860ccf4520652fdaa23eb57f415e7c33066d681b..12cbd30df68a39ce35669aa6d421501987446f2c 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
+       we don't use `bound-and-true-p'.
+
 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * gnus-util.el (gnus-bound-and-true-p): Remove.
index f811c9664af30acc0a01b5f24c2b7bb7ead1a1fb..14551737837d61ca0a170cff86ee5a92ce0f6746 100644 (file)
@@ -1986,7 +1986,8 @@ definitions to shadow the loaded ones for use in file byte-compilation."
              (gnus-macroexpand-all expanded environment)))
        form))))
 
-;; simple check, can be a macro but this way, although slow, it's really clear
+;; Simple check: can be a macro but this way, although slow, it's really clear.
+;; We don't use `bound-and-true-p' because it's not in XEmacs.
 (defun gnus-bound-and-true-p (sym)
   (and (boundp sym) (symbol-value sym)))