]> git.eshelyaron.com Git - emacs.git/commitdiff
Suppress warning in isearchb about iswitchb being obsolete
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 17 Jun 2019 10:37:02 +0000 (12:37 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 17 Jun 2019 10:37:02 +0000 (12:37 +0200)
* 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.

lisp/isearchb.el

index ee392b349e8847306b858e24424defb63b55a9d1..3dcd7d0d7a9dc093b82057d25aad41bc58b7f226 100644 (file)
@@ -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."