summaryrefslogtreecommitdiff
path: root/lisp/vc/ediff-init.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2020-12-19 13:18:11 +0200
committerEli Zaretskii <eliz@gnu.org>2020-12-19 13:18:11 +0200
commit64d97212f42bc0305560a0ae2cc2f16a3a851117 (patch)
tree70aa3c5aec0e2a621e0b110e7813b47ce93881d8 /lisp/vc/ediff-init.el
parent9f7e0a3e7d33d79f7f0319cd0fc64920988b0039 (diff)
downloademacs-64d97212f42bc0305560a0ae2cc2f16a3a851117.tar.gz
Fix over-wide doc strings
* lisp/vc/ediff-init.el (ediff-before-flag-bol) (ediff-after-flag-eol, ediff-before-flag-mol): * lisp/org/org-ctags.el (org-ctags-open-link-functions): * lisp/mail/feedmail.el (feedmail-sendmail-f-doesnt-sell-me-out): * lisp/language/ethio-util.el (ethio-use-three-dot-question) (ethio-quote-vowel-always, ethio-W-sixth-always): * lisp/gnus/nnvirtual.el (nnvirtual-mapping-table) (nnvirtual-mapping-offsets, nnvirtual-mapping-reads) (nnvirtual-mapping-marks, nnvirtual-info-installed): * lisp/gnus/gnus.el (charset): * lisp/gnus/deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars) (gnus-outlook-deuglify-no-wrap-chars) (gnus-outlook-deuglify-attrib-cut-regexp): Fix doc strings to not exceed 80-column limits. (Bug#44858)
Diffstat (limited to 'lisp/vc/ediff-init.el')
-rw-r--r--lisp/vc/ediff-init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc/ediff-init.el b/lisp/vc/ediff-init.el
index 04926af16ef..8974692751f 100644
--- a/lisp/vc/ediff-init.el
+++ b/lisp/vc/ediff-init.el
@@ -554,19 +554,19 @@ See the documentation string of `ediff-focus-on-regexp-matches' for details.")
;; Highlighting
(defcustom ediff-before-flag-bol "->>"
- "Flag placed before a highlighted block of differences, if block starts at beginning of a line."
+ "Flag placed before highlighted block of differences at beginning of a line."
:type 'string
:tag "Region before-flag at beginning of line"
:group 'ediff)
(defcustom ediff-after-flag-eol "<<-"
- "Flag placed after a highlighted block of differences, if block ends at end of a line."
+ "Flag placed after highlighted block of differences that ends at end of line."
:type 'string
:tag "Region after-flag at end of line"
:group 'ediff)
(defcustom ediff-before-flag-mol "->>"
- "Flag placed before a highlighted block of differences, if block starts in mid-line."
+ "Flag placed before highlighted block of differences that starts mid-line."
:type 'string
:tag "Region before-flag in the middle of line"
:group 'ediff)