diff options
| author | Stefan Kangas | 2024-07-24 23:48:05 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-07-24 23:53:13 +0200 |
| commit | 0ae70433eabe9cf672a7f0f0803f72ad136b1344 (patch) | |
| tree | b8c12bf723dc89fb5f046541d47a652f7a358dc3 | |
| parent | a6a4ad13e48c656a530bea37d251a2dc55cc47d8 (diff) | |
| download | emacs-0ae70433eabe9cf672a7f0f0803f72ad136b1344.tar.gz emacs-0ae70433eabe9cf672a7f0f0803f72ad136b1344.zip | |
Delete defgroup "wp" obsolete since Emacs 26
* lisp/cus-edit.el (wp): Delete defgroup obsolete since Emacs 26.
(text): Don't inherit obsolete customization group 'wp'.
* lisp/finder.el (finder-known-keywords): Delete 'wp' keyword.
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 9 | ||||
| -rw-r--r-- | lisp/finder.el | 3 |
3 files changed, 5 insertions, 10 deletions
| @@ -167,6 +167,9 @@ A new ':authorizable t' parameter has been added to 'dbus-call-method' | |||
| 167 | and 'dbus-call-method-asynchronously' to allow the user to interactively | 167 | and 'dbus-call-method-asynchronously' to allow the user to interactively |
| 168 | authorize the invoked D-Bus method (e.g., via polkit). | 168 | authorize the invoked D-Bus method (e.g., via polkit). |
| 169 | 169 | ||
| 170 | ** The customization group 'wp' has been removed. | ||
| 171 | It has been obsolete since Emacs 26.1. Use the group 'text' instead. | ||
| 172 | |||
| 170 | 173 | ||
| 171 | * Changes in Emacs 31.1 on Non-Free Operating Systems | 174 | * Changes in Emacs 31.1 on Non-Free Operating Systems |
| 172 | 175 | ||
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 5fd3629e57d..9f5ac47490c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -175,16 +175,9 @@ | |||
| 175 | "Support for editing files." | 175 | "Support for editing files." |
| 176 | :group 'emacs) | 176 | :group 'emacs) |
| 177 | 177 | ||
| 178 | (defgroup wp nil | ||
| 179 | "Support for editing text files. | ||
| 180 | Use group `text' for this instead. This group is obsolete." | ||
| 181 | :group 'emacs) | ||
| 182 | |||
| 183 | (defgroup text nil | 178 | (defgroup text nil |
| 184 | "Support for editing text files." | 179 | "Support for editing text files." |
| 185 | :group 'emacs | 180 | :group 'emacs) |
| 186 | ;; Inherit from deprecated `wp' for compatibility, for now. | ||
| 187 | :group 'wp) | ||
| 188 | 181 | ||
| 189 | (defgroup data nil | 182 | (defgroup data nil |
| 190 | "Support for editing binary data files." | 183 | "Support for editing binary data files." |
diff --git a/lisp/finder.el b/lisp/finder.el index 1cf607c03c0..167c2079954 100644 --- a/lisp/finder.el +++ b/lisp/finder.el | |||
| @@ -71,8 +71,7 @@ | |||
| 71 | (text . "editing text files") | 71 | (text . "editing text files") |
| 72 | (tools . "programming tools") | 72 | (tools . "programming tools") |
| 73 | (unix . "UNIX feature interfaces and emulators") | 73 | (unix . "UNIX feature interfaces and emulators") |
| 74 | (vc . "version control") | 74 | (vc . "version control")) |
| 75 | (wp . "use keyword `text' instead; this keyword is obsolete")) | ||
| 76 | "Association list of the standard \"Keywords:\" headers. | 75 | "Association list of the standard \"Keywords:\" headers. |
| 77 | Each element has the form (KEYWORD . DESCRIPTION).") | 76 | Each element has the form (KEYWORD . DESCRIPTION).") |
| 78 | 77 | ||