[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/company 89c6c0d6fb 3/3: Fix CI for Emacs 25
|
From: |
ELPA Syncer |
|
Subject: |
[elpa] externals/company 89c6c0d6fb 3/3: Fix CI for Emacs 25 |
|
Date: |
Fri, 17 Nov 2023 18:57:33 -0500 (EST) |
branch: externals/company
commit 89c6c0d6fbbf9635ec77fcf9119e3fe8ebee5e81
Author: Dmitry Gutov <dmitry@gutov.dev>
Commit: Dmitry Gutov <dmitry@gutov.dev>
Fix CI for Emacs 25
---
company.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/company.el b/company.el
index 7420540074..1b98759173 100644
--- a/company.el
+++ b/company.el
@@ -2920,8 +2920,9 @@ from the candidates list.")
(progn
(dolist (buf bufs)
(with-current-buffer buf
- ;; Workaround for debbugs#67248.
- (setq-local display-line-numbers nil)
+ (when (bound-and-true-p display-line-numbers)
+ ;; Workaround for debbugs#67248.
+ (setq-local display-line-numbers nil))
(when fra-local
(setq-local face-remapping-alist fra-local))))
,@body)