]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove dictionary-color-support compat code
authorStefan Kangas <stefankangas@gmail.com>
Sat, 12 Aug 2023 14:06:10 +0000 (16:06 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 12 Aug 2023 14:31:08 +0000 (16:31 +0200)
* lisp/net/dictionary.el (dictionary-color-support): Make obsolete
in favor of 'display-color-p'.  Update single caller.

lisp/net/dictionary.el

index 8d81b3ec9d8474688da870aa3ec1ba079edb92eb..d583f8157eb26b4a2e549cf52ab3a3e898775e88 100644 (file)
@@ -417,12 +417,6 @@ Otherwise, `dictionary-search' displays definitions in a *Dictionary* buffer."
   nil
   "Stores the point position while buffer display.")
 
-(defvar dictionary-color-support
-  (condition-case nil
-      (display-color-p)
-    (error nil))
-  "Determines if the Emacs has support to display color.")
-
 (defvar dictionary-word-history
   '()
   "History list of searched word.")
@@ -900,7 +894,7 @@ them with buttons to perform a new search."
        (if (search-forward-regexp regexp nil t)
            (let ((match-start (match-beginning 2))
                  (match-end (match-end 2)))
-             (if dictionary-color-support
+              (if (display-color-p)
                  ;; Compensate for the replacement
                  (let ((brace-match-length (- (match-end 1)
                                               (match-beginning 1))))
@@ -1559,5 +1553,9 @@ Further arguments are currently ignored."
                             (match-string 1)
                             dictionary))))))
 
+(defvar dictionary-color-support (display-color-p)
+  "Determines if the Emacs has support to display color.")
+(make-obsolete-variable 'dictionary-color-support 'display-color-p "30.1")
+
 (provide 'dictionary)
 ;;; dictionary.el ends here