aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2023-12-30 17:56:39 +0100
committerStefan Kangas2023-12-30 18:14:40 +0100
commit03fdb21bcfdc27401066bb7375d07ad0259219fa (patch)
tree65fc0f253d77a27873d898589b374c3525985cf4
parente438215f69fcd9e536981f90b2ff30f72c4a757e (diff)
downloademacs-03fdb21bcfdc27401066bb7375d07ad0259219fa.tar.gz
emacs-03fdb21bcfdc27401066bb7375d07ad0259219fa.zip
Add `text` to `finder-known-keywords`
`finder-known-keywords` is "supposed to correspond to top-level customization groups". However, the customize group "wp" is now deprecated in favor of "text". * lisp/finder.el (finder-known-keywords): Add new "text" keyword. Deprecate the "wp" keyword.
-rw-r--r--lisp/finder.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/finder.el b/lisp/finder.el
index 4e3a3566ce9..717ee51a33b 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -68,10 +68,11 @@
68 (processes . "processes, subshells, and compilation") 68 (processes . "processes, subshells, and compilation")
69 (terminals . "text terminals (ttys)") 69 (terminals . "text terminals (ttys)")
70 (tex . "the TeX document formatter") 70 (tex . "the TeX document formatter")
71 (text . "editing text files")
71 (tools . "programming tools") 72 (tools . "programming tools")
72 (unix . "UNIX feature interfaces and emulators") 73 (unix . "UNIX feature interfaces and emulators")
73 (vc . "version control") 74 (vc . "version control")
74 (wp . "word processing")) 75 (wp . "use keyword `text' instead; this keyword is deprecated"))
75 "Association list of the standard \"Keywords:\" headers. 76 "Association list of the standard \"Keywords:\" headers.
76Each element has the form (KEYWORD . DESCRIPTION).") 77Each element has the form (KEYWORD . DESCRIPTION).")
77 78