Skip to content

Commit

Permalink
Fix warning from documentation being >80 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonBreezes committed Aug 26, 2022
1 parent c03577e commit 4e25f51
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pcre2el.el
Original file line number Diff line number Diff line change
Expand Up @@ -464,19 +464,22 @@
(defface rxt-highlight-face
'((((min-colors 16581375) (background light)) :background "#eee8d5")
(((min-colors 16581375) (background dark)) :background "#222222"))
"Face for highlighting corresponding regex syntax in `rxt-explain' buffers."
"Face for highlighting corresponding regex syntax in
`rxt-explain' buffers."
:group 'rxt)

(defcustom rxt-verbose-rx-translation nil
"Non-nil if `rxt-pcre-to-rx' and `rxt-elisp-to-rx' should use verbose `rx' primitives.
"Non-nil if `rxt-pcre-to-rx' and `rxt-elisp-to-rx' should use
verbose `rx' primitives.
Verbose primitives are things like `line-start' instead of `bol',
etc."
:group 'rxt
:type 'boolean)

(defcustom rxt-explain-verbosely t
"Non-nil if `rxt-explain-elisp' and `rxt-explain-pcre' should use verbose `rx' primitives.
"Non-nil if `rxt-explain-elisp' and `rxt-explain-pcre' should
use verbose `rx' primitives.
This overrides the value of `rxt-verbose-rx-translation' for
these commands only."
Expand Down

0 comments on commit 4e25f51

Please sign in to comment.