diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-17 12:37:02 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-17 12:37:02 +0200 |
commit | c287deb0b8a7331afb2ac0016499b00b69e2b71c (patch) | |
tree | 30d26c39f7656d8210322a0c5a19c039c70d6495 | |
parent | e6f2f5ace17fa752194f94f6762d3684d0d5b40a (diff) | |
download | emacs-c287deb0b8a7331afb2ac0016499b00b69e2b71c.tar.gz |
Suppress warning in isearchb about iswitchb being obsolete
* lisp/isearchb.el (obsolete): Suppress warning about package
being obsolete. Instead, this has been reported to the bug
tracker, because it requires a rewrite of isearchb.
-rw-r--r-- | lisp/isearchb.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/isearchb.el b/lisp/isearchb.el index ee392b349e8..3dcd7d0d7a9 100644 --- a/lisp/isearchb.el +++ b/lisp/isearchb.el @@ -77,7 +77,9 @@ ;;; Code: -(require 'iswitchb) ;FIXME: Don't rely on iswitchb! +;; FIXME: Don't rely on iswitchb! See bug#36260. +(with-suppressed-warnings ((obsolete iswitchb)) + (require 'iswitchb)) (defgroup isearchb nil "Switch between buffers using a mechanism like isearch." |