diff options
| author | Eli Zaretskii | 2022-06-11 13:30:07 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-06-11 13:30:07 +0300 |
| commit | 52ad2b53cba25e3f9194d26ec5817e8fc3b7d4f5 (patch) | |
| tree | 48317bc5358264f0aa91f65e608cdf8cf303dc3f | |
| parent | 0705705ebf7d19e30b97b0fab508ffc7ec1bec69 (diff) | |
| download | emacs-52ad2b53cba25e3f9194d26ec5817e8fc3b7d4f5.tar.gz emacs-52ad2b53cba25e3f9194d26ec5817e8fc3b7d4f5.zip | |
Fix doc strings in whitespace.el
* lisp/whitespace.el (whitespace-style, whitespace-action):
Untabify the doc strings. (Bug#55904)
| -rw-r--r-- | lisp/whitespace.el | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 13917206cae..7889a802af1 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el | |||
| @@ -880,27 +880,27 @@ C++ modes only." | |||
| 880 | 880 | ||
| 881 | It's a list containing some or all of the following values: | 881 | It's a list containing some or all of the following values: |
| 882 | 882 | ||
| 883 | nil no action is taken. | 883 | nil no action is taken. |
| 884 | 884 | ||
| 885 | cleanup cleanup any bogus whitespace always when local | 885 | cleanup cleanup any bogus whitespace always when local |
| 886 | whitespace is turned on. | 886 | whitespace is turned on. |
| 887 | See `whitespace-cleanup' and | 887 | See `whitespace-cleanup' and |
| 888 | `whitespace-cleanup-region'. | 888 | `whitespace-cleanup-region'. |
| 889 | 889 | ||
| 890 | report-on-bogus report if there is any bogus whitespace always | 890 | report-on-bogus report if there is any bogus whitespace always |
| 891 | when local whitespace is turned on. | 891 | when local whitespace is turned on. |
| 892 | 892 | ||
| 893 | auto-cleanup cleanup any bogus whitespace when buffer is | 893 | auto-cleanup cleanup any bogus whitespace when buffer is |
| 894 | written. | 894 | written. |
| 895 | See `whitespace-cleanup' and | 895 | See `whitespace-cleanup' and |
| 896 | `whitespace-cleanup-region'. | 896 | `whitespace-cleanup-region'. |
| 897 | 897 | ||
| 898 | abort-on-bogus abort if there is any bogus whitespace and the | 898 | abort-on-bogus abort if there is any bogus whitespace and the |
| 899 | buffer is written. | 899 | buffer is written. |
| 900 | 900 | ||
| 901 | warn-if-read-only give a warning if `cleanup' or `auto-cleanup' | 901 | warn-if-read-only give a warning if `cleanup' or `auto-cleanup' |
| 902 | is included in `whitespace-action' and the | 902 | is included in `whitespace-action' and the |
| 903 | buffer is read-only. | 903 | buffer is read-only. |
| 904 | 904 | ||
| 905 | Any other value is treated as nil." | 905 | Any other value is treated as nil." |
| 906 | :type '(choice :tag "Actions" | 906 | :type '(choice :tag "Actions" |