]> git.eshelyaron.com Git - emacs.git/commitdiff
Make a redundant idlwave variable obsolete
authorStefan Kangas <stefan@marxist.se>
Thu, 16 Sep 2021 09:48:08 +0000 (11:48 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 16 Sep 2021 09:49:43 +0000 (11:49 +0200)
* lisp/progmodes/idlw-help.el (idlwave-help-browse-url-available):
Make obsolete.
(idlwave-help-check-locations): Don't use above variable.

lisp/progmodes/idlw-help.el

index c53b9a4775c769f28b20482738da7c969569f1e3..b90bbedd453e8db12d81dc2c25c2af1edbce8419 100644 (file)
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 \f
 
-
 ;;; Code:
-(defvar idlwave-help-browse-url-available t
-  "Whether browse-url is available.")
 
 (require 'browse-url)
 
@@ -332,9 +329,7 @@ Here are all keybindings.
     (when (and idlwave-help-use-assistant
               (not (eq (idlwave-help-assistant-available) t)))
       (message "Cannot locate IDL Assistant, enabling default browser.")
-      (setq idlwave-help-use-assistant nil)
-      (unless idlwave-help-browse-url-available
-       (error "browse-url is not available; install it or IDL Assistant to use HTML help")))))
+      (setq idlwave-help-use-assistant nil))))
 
 
 (defvar idlwave-current-obj_new-class)
@@ -1354,6 +1349,8 @@ IDL assistant.")
     (setq idlwave-help-assistant-socket nil
          idlwave-help-assistant-process nil)))
 
+(defvar idlwave-help-browse-url-available t)
+(make-obsolete-variable 'idlwave-help-browse-url-available nil "28.1")
 
 (provide 'idlw-help)
 (provide 'idlwave-help)