emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106272: gnus-util.el (gnus-bound-and


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106272: gnus-util.el (gnus-bound-and-true-p): Another comment to explain why we don't use `bound-and-true-p'.
Date: Wed, 02 Nov 2011 22:59:23 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106272
author: Teodor Zlatanov <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Wed 2011-11-02 22:59:23 +0000
message:
  gnus-util.el (gnus-bound-and-true-p): Another comment to explain why we don't 
use `bound-and-true-p'.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-util.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2011-11-02 07:28:14 +0000
+++ b/lisp/gnus/ChangeLog       2011-11-02 22:59:23 +0000
@@ -1,3 +1,8 @@
+2011-11-02  Teodor Zlatanov  <address@hidden>
+
+       * 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  <address@hidden>
 
        * gnus-util.el (gnus-bound-and-true-p): Remove.

=== modified file 'lisp/gnus/gnus-util.el'
--- a/lisp/gnus/gnus-util.el    2011-11-02 07:28:14 +0000
+++ b/lisp/gnus/gnus-util.el    2011-11-02 22:59:23 +0000
@@ -1986,7 +1986,8 @@
              (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)))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]