summaryrefslogtreecommitdiff
path: root/lisp/gnus/gnus-util.el
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2017-03-30 22:22:47 -0400
committerMark Oteiza <mvoteiza@udel.edu>2017-03-30 22:22:47 -0400
commite22d740c30ff5b3f7749c542b7dc0c454eb69f98 (patch)
tree0cbe92074da670272474f20eb19590fbd6f5b7a8 /lisp/gnus/gnus-util.el
parentd1e113ee60a0750acbbc0da569f7cc1bab88f11c (diff)
downloademacs-e22d740c30ff5b3f7749c542b7dc0c454eb69f98.tar.gz
Remove gnus-boundp
* lisp/gnus/gnus-start.el (gnus-display-time-event-handler): Use bound-and-true-p. * lisp/gnus/gnus-util (gnus-boundp): Remove.
Diffstat (limited to 'lisp/gnus/gnus-util.el')
-rw-r--r--lisp/gnus/gnus-util.el5
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el
index 20eceb58edd..b509d8ad448 100644
--- a/lisp/gnus/gnus-util.el
+++ b/lisp/gnus/gnus-util.el
@@ -84,11 +84,6 @@ This is a compatibility function for different Emacsen."
(declare (obsolete replace-regexp-in-string "26.1"))
(replace-regexp-in-string regexp newtext string nil literal))
-(defun gnus-boundp (variable)
- "Return non-nil if VARIABLE is bound and non-nil."
- (and (boundp variable)
- (symbol-value variable)))
-
(defmacro gnus-eval-in-buffer-window (buffer &rest forms)
"Pop to BUFFER, evaluate FORMS, and then return to the original window."
(let ((tempvar (make-symbol "GnusStartBufferWindow"))