branch: scratch/add-vdiff
commit 0f8dd158d9829faa1e98c71e48ad21668a00bb6b
Author: Justin Burkett <[email protected]>
Commit: Justin Burkett <[email protected]>
vdiff: Improve a couple of docstrings
---
README.org | 10 +++++-----
vdiff.el | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/README.org b/README.org
index eafbab1..1541b95 100644
--- a/README.org
+++ b/README.org
@@ -174,7 +174,7 @@ The current customization options and there defaults are
;; Minimum number of lines to fold
(setq vdiff-min-fold-size 4)
- ;; If non-nil, avoid closing new folds around point.
+ ;; If non-nil, allow closing new folds around point after updates.
(setq vdiff-may-close-fold-on-point t)
;; Function that returns the string printed for a closed fold. The arguments
@@ -182,11 +182,11 @@ The current customization options and there defaults are
;; width of the buffer.
(setq vdiff-fold-string-function 'vdiff-fold-string-default)
- ;; Default syntax table class code to use for identifying \"words\" in
- ;; \`vdiff-refine-this-change'. Some useful options are
+ ;; Default syntax table class code to use for identifying "words" in
+ ;; `vdiff-refine-this-change'. Some useful options are
;;
- ;; \"w\" (default) words
- ;; \"w_\" symbols \(really words plus symbol constituents\)
+ ;; "w" (default) words
+ ;; "w_" symbols (words plus symbol constituents)
;;
;; For more information see
;;
https://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-Class-Table.html
diff --git a/vdiff.el b/vdiff.el
index ccc3bb3..e88c631 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -95,7 +95,7 @@ break vdiff. It is empty by default."
:type 'integer)
(defcustom vdiff-may-close-fold-on-point t
- "If non-nil, avoid closing new folds around point."
+ "If non-nil, allow closing new folds around point after updates."
:group 'vdiff
:type 'boolean)
@@ -111,7 +111,7 @@ text on the first line, and the width of the buffer."
\"words\" in \`vdiff-refine-this-hunk'. Some useful options are
\"w\" (default) words
-\"w_\" symbols \(really words plus symbol constituents\)
+\"w_\" symbols \(words plus symbol constituents\)
For more information see
https://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-Class-Table.html"