[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/pulsar a7a678a650 2/3: Remove quote from all options th
From: |
ELPA Syncer |
Subject: |
[elpa] externals/pulsar a7a678a650 2/3: Remove quote from all options that should use value of pulsar-face |
Date: |
Thu, 12 Dec 2024 03:58:46 -0500 (EST) |
branch: externals/pulsar
commit a7a678a650205b77dee631f425b22798e9d79bbc
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Remove quote from all options that should use value of pulsar-face
---
pulsar.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/pulsar.el b/pulsar.el
index bc9470ad97..b80b4b6e49 100644
--- a/pulsar.el
+++ b/pulsar.el
@@ -228,19 +228,19 @@ background attribute."
:package-version '(pulsar . "0.3.0")
:group 'pulsar)
-(defcustom pulsar-region-face 'pulsar-face
- "Face to indicate non-destructive region changes."
+(defcustom pulsar-region-face pulsar-face
+ "Face to pulse a region that has not changed."
:type pulsar--face-with-default-and-choice-widget
:package-version '(pulsar . "1.2.0")
:group 'pulsar)
-(defcustom pulsar-region-change-face 'pulsar-face
- "Face to indicate destructive region changes."
+(defcustom pulsar-region-change-face pulsar-face
+ "Face to pulse a region that has changed (added or removed)."
:type pulsar--face-with-default-and-choice-widget
:package-version '(pulsar . "1.2.0")
:group 'pulsar)
-(defcustom pulsar-window-change-face 'pulsar-face
+(defcustom pulsar-window-change-face pulsar-face
"Face to indicate the current position on window changes."
:type pulsar--face-with-default-and-choice-widget
:package-version '(pulsar . "1.2.0")