]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve 'diff-whitespace-style' user option declaration
authorYugaEgo <yet@ego.team>
Wed, 27 Jul 2022 09:52:01 +0000 (11:52 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 27 Jul 2022 09:52:22 +0000 (11:52 +0200)
* lisp/vc/diff-mode.el (diff-whitespace-style):
Use ':require'.  Minor docstring fix.
(top level): Do not require 'whitespace.
(whitespace-style, whitespace-trailing-regexp):
Add defvars (rollback recent removal).
* etc/NEWS: Extend 'diff-whitespace-style' introduction.
(Bug#56679) (bug#56679).

etc/NEWS
lisp/vc/diff-mode.el

index 7c1462ee57351642a05ffca7889df1b6e98b94d2..b79e216aa02ffc7d068d4df0ff01880b4353275a 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1206,7 +1206,9 @@ contents.
 
 ---
 *** New user option 'diff-whitespace-style'.
-This option determines buffer-local 'whitespace-style' value.
+Sets the value of the buffer-local variable 'whitespace-style' in
+'diff-mode' buffers.  By default, this variable is '(face trailing)',
+which preserves behavior from previous Emacs versions.
 
 
 ** Ispell
index 8d9caf35a3be7f58b531e9cc8eeffd0353ee090b..aa426446d731b62bbd2cceb2bbc1807fdb9456ca 100644 (file)
@@ -56,7 +56,6 @@
 (eval-when-compile (require 'cl-lib))
 (eval-when-compile (require 'subr-x))
 (require 'easy-mmode)
-(require 'whitespace)
 
 (autoload 'vc-find-revision "vc")
 (autoload 'vc-find-revision-no-save "vc")
@@ -149,7 +148,8 @@ and hunk-based syntax highlighting otherwise as a fallback."
                  (const :tag "Allow hunk-based fallback" hunk-also)))
 
 (defcustom diff-whitespace-style '(face trailing)
-  "Specify `whitespace-style' variable for the current Diff mode buffer."
+  "Specify `whitespace-style' variable for `diff-mode' buffers."
+  :require 'whitespace
   :type (get 'whitespace-style 'custom-type)
   :version "29.1")
 
@@ -1490,6 +1490,9 @@ See `after-change-functions' for the meaning of BEG, END and LEN."
     (nconc minor-mode-map-alist
            (list (cons 'diff-mode-read-only diff-mode-shared-map))))
 
+(defvar whitespace-style)
+(defvar whitespace-trailing-regexp)
+
 ;;;###autoload
 (define-derived-mode diff-mode fundamental-mode "Diff"
   "Major mode for viewing/editing context diffs.