aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2019-08-13 18:16:51 +0300
committerEli Zaretskii2019-08-13 18:16:51 +0300
commitc0e720cdd97b28d532f4deb66861518a70d062ac (patch)
tree33778bcbdbe98cad7bfd3af6a56d666f3811dd03 /lisp
parentc90975f92fd71be7282293e0ed1098c0fa5d62a0 (diff)
downloademacs-c0e720cdd97b28d532f4deb66861518a70d062ac.tar.gz
emacs-c0e720cdd97b28d532f4deb66861518a70d062ac.zip
Improve documentation of 'diff-font-lock-prettify'
* lisp/vc/diff-mode.el (diff-font-lock-prettify): Doc fix. * etc/NEWS: Minor copyedits.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/vc/diff-mode.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el
index c4812e81d40..19f9c802d40 100644
--- a/lisp/vc/diff-mode.el
+++ b/lisp/vc/diff-mode.el
@@ -109,7 +109,11 @@ You can always manually refine a hunk with `diff-refine-hunk'."
109 (const :tag "Refine hunks during navigation" navigation))) 109 (const :tag "Refine hunks during navigation" navigation)))
110 110
111(defcustom diff-font-lock-prettify nil 111(defcustom diff-font-lock-prettify nil
112 "If non-nil, font-lock will try and make the format prettier." 112 "If non-nil, font-lock will try and make the format prettier.
113
114This mimics the Magit's diff format by making the hunk header
115less cryptic, and on GUI frames also displays insertion and
116deletion indicators on the left fringe (if it's available)."
113 :version "27.1" 117 :version "27.1"
114 :type 'boolean) 118 :type 'boolean)
115 119