aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-09-04 15:01:50 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-09-04 15:01:50 +0200
commit80028848e808382a6eaf98f6a66128b7da6e3fc7 (patch)
treed579a315593089895d06cd9cd3447c685adeb057 /editors
parentb8ab65a70a9d4900b54cce807981d8fdcb6b38dc (diff)
emacs/bqn-input.el: make defcustom docstring max-width happy
A docstring wider than 80 characters causes a warning when compiling which isn't too much trouble to clean up.
Diffstat (limited to 'editors')
-rw-r--r--editors/emacs/bqn-input.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/emacs/bqn-input.el b/editors/emacs/bqn-input.el
index 8ec5c4f7..a0230245 100644
--- a/editors/emacs/bqn-input.el
+++ b/editors/emacs/bqn-input.el
@@ -39,9 +39,9 @@
(setq bqn--mode-map (bqn--make-bqn-mode-map)))
(defcustom bqn-mode-map-prefix "s-"
- "The keymap prefix for ‘bqn--mode-map’ used both to store the new value
-using ‘set-create’ and to update ‘bqn--mode-map’ using
- `bqn--make-bqn-mode-map'. Kill and re-start your BQN buffers to reflect the change."
+ "The keymap prefix for ‘bqn--mode-map’ used both to store the new value using
+ ‘set-create’ and to update ‘bqn--mode-map’ using `bqn--make-bqn-mode-map'.
+ Kill and re-start your BQN buffers to reflect the change."
:type 'string
:group 'bqn
:set 'bqn--set-mode-map-prefix)