summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2019-05-29 18:49:07 +0200
committerEli Zaretskii <eliz@gnu.org>2019-06-09 10:07:17 +0300
commit8c4d114ee200081b0722aa9e008ed2ccbc2ca8dc (patch)
treee793acafc4af5053d46567120bd009c4372ad227
parentf58cae8b37d00f83d191d43f45e7bc1fa57b8eb1 (diff)
downloademacs-8c4d114ee200081b0722aa9e008ed2ccbc2ca8dc.tar.gz
Fix TODO to remove leading '*' from defcustom
* etc/TODO: Remove done TODO to remove leading '*' from defcustom doc-strings. * lisp/ibuffer.el (ibuffer-inline-columns): Remove leading '*' from doc-string.
-rw-r--r--etc/TODO3
-rw-r--r--lisp/ibuffer.el2
2 files changed, 1 insertions, 4 deletions
diff --git a/etc/TODO b/etc/TODO
index fe2e583a380..0f93279fa68 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -125,9 +125,6 @@ to use it.
** Convert all defvars with leading '*' in the doc-strings into defcustoms
of appropriate :type and :group.
-** Remove any leading '*'s from defcustom doc-strings.
-[done?] [A lot of them are in CC Mode.]
-
** Remove unnecessary autoload cookies from defcustoms.
This needs a bit of care, since often people have become used to
expecting such variables to always be defined, eg when they modify
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 628e8840948..929336c479f 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -1809,7 +1809,7 @@ If point is on a group name, this function operates on that group."
(defface ibuffer-locked-buffer
'((((background dark)) (:foreground "RosyBrown"))
(t (:foreground "brown4")))
- "*Face used for locked buffers in Ibuffer."
+ "Face used for locked buffers in Ibuffer."
:version "26.1"
:group 'ibuffer
:group 'font-lock-highlighting-faces)