diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-07-10 10:45:34 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-07-10 10:45:34 +0200 |
| commit | b7099b4b714178da1d656b346f55b1742a55fd98 (patch) | |
| tree | c56ea9e23b365cc92d3b4ee103749ecb5b5912c1 | |
| parent | bedd0fa5bec33a853b4f9ef140f463a586eee5bc (diff) | |
Formatting
| -rw-r--r-- | corfu.el | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -590,10 +590,9 @@ FRAME is the existing frame." (eq t (compare-strings word 0 len it 0 len completion-ignore-case)))))) +;; bug#6581: `equal-including-properties' uses `eq' for properties until 29.1. +;; Approximate by comparing `text-properties-at' position 0. (defalias 'corfu--equal-including-properties - ;; bug#6581: `equal-including-properties' uses `eq' to compare - ;; properties until 29.1. Approximate by comparing - ;; `text-properties-at' position 0. (static-if (< emacs-major-version 29) (lambda (x y) (and (equal x y) |
