]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove leading * from two defcustom doc strings
authorGlenn Morris <rgm@gnu.org>
Tue, 27 Feb 2018 07:11:20 +0000 (23:11 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 27 Feb 2018 07:11:20 +0000 (23:11 -0800)
* lisp/gnus/mm-util.el (mm-extra-numeric-entities):
* lisp/progmodes/cperl-mode.el (cperl-indent-subs-specially):
Remove obsolete leading * from defcustom doc string.

lisp/gnus/mm-util.el
lisp/progmodes/cperl-mode.el

index fcd97f2b27cd33fe0dd67bc3c7bdf810e84c6e53..9ff346041de8ac8c5e91bd9b1f7fc7c0e8076ef1 100644 (file)
@@ -431,7 +431,7 @@ mail with multiple parts is preferred to sending a Unicode one.")
      (#x94 . #x201D) (#x95 . #x2022) (#x96 . #x2013) (#x97 . #x2014)
      (#x98 . #x02DC) (#x99 . #x2122) (#x9A . #x0161) (#x9B . #x203A)
      (#x9C . #x0153) (#x9E . #x017E) (#x9F . #x0178)))
-  "*Alist of extra numeric entities and characters other than ISO 10646.
+  "Alist of extra numeric entities and characters other than ISO 10646.
 This table is used for decoding extra numeric entities to characters,
 like \"&#128;\" to the euro sign, mainly in html messages."
   :type '(alist :key-type character :value-type character)
index a62a974a99c9a50fb5b30ad3e7fad311fb9a485b..8c0682ac1c1a827c2dd96c935839484845ff2ad9 100644 (file)
@@ -267,7 +267,7 @@ Versions 5.2 ... 5.20 behaved as if this were nil."
   :group 'cperl-indentation-details)
 
 (defcustom cperl-indent-subs-specially t
-  "*Non-nil means indent subs that are inside other blocks (hash values, for example) relative to the beginning of the \"sub\" keyword, rather than relative to the statement that contains the declaration."
+  "Non-nil means indent subs that are inside other blocks (hash values, for example) relative to the beginning of the \"sub\" keyword, rather than relative to the statement that contains the declaration."
   :type 'boolean
   :group 'cperl-indentation-details)