Use `special-mode' for whitespace-report
* lisp/whitespace.el (whitespace-report-region): Use `special-mode' instead of `fundamental-mode' (bug#50715).
This commit is contained in:
parent
f4813b23f2
commit
02a2fba786
1 changed files with 25 additions and 23 deletions
|
@ -1722,30 +1722,32 @@ cleaning up these problems."
|
|||
(ws-tab-width tab-width))
|
||||
(with-current-buffer (get-buffer-create
|
||||
whitespace-report-buffer-name)
|
||||
(erase-buffer)
|
||||
(insert (if ws-indent-tabs-mode
|
||||
(car whitespace-report-text)
|
||||
(cdr whitespace-report-text)))
|
||||
(goto-char (point-min))
|
||||
(forward-line 3)
|
||||
(dolist (option whitespace-report-list)
|
||||
(let ((inhibit-read-only t))
|
||||
(special-mode)
|
||||
(erase-buffer)
|
||||
(insert (if ws-indent-tabs-mode
|
||||
(car whitespace-report-text)
|
||||
(cdr whitespace-report-text)))
|
||||
(goto-char (point-min))
|
||||
(forward-line 3)
|
||||
(dolist (option whitespace-report-list)
|
||||
(forward-line 1)
|
||||
(whitespace-mark-x
|
||||
27 (memq (car option) style))
|
||||
(whitespace-mark-x 7 (car bogus-list))
|
||||
(setq bogus-list (cdr bogus-list)))
|
||||
(forward-line 1)
|
||||
(whitespace-mark-x
|
||||
27 (memq (car option) style))
|
||||
(whitespace-mark-x 7 (car bogus-list))
|
||||
(setq bogus-list (cdr bogus-list)))
|
||||
(forward-line 1)
|
||||
(whitespace-insert-value ws-indent-tabs-mode)
|
||||
(whitespace-insert-value ws-tab-width)
|
||||
(when has-bogus
|
||||
(goto-char (point-max))
|
||||
(insert (substitute-command-keys
|
||||
" Type `\\[whitespace-cleanup]'")
|
||||
" to cleanup the buffer.\n\n"
|
||||
(substitute-command-keys
|
||||
" Type `\\[whitespace-cleanup-region]'")
|
||||
" to cleanup a region.\n\n"))
|
||||
(whitespace-display-window (current-buffer)))))
|
||||
(whitespace-insert-value ws-indent-tabs-mode)
|
||||
(whitespace-insert-value ws-tab-width)
|
||||
(when has-bogus
|
||||
(goto-char (point-max))
|
||||
(insert (substitute-command-keys
|
||||
" Type `\\[whitespace-cleanup]'")
|
||||
" to cleanup the buffer.\n\n"
|
||||
(substitute-command-keys
|
||||
" Type `\\[whitespace-cleanup-region]'")
|
||||
" to cleanup a region.\n\n"))
|
||||
(whitespace-display-window (current-buffer))))))
|
||||
has-bogus)))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue