aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-02-26 23:11:20 -0800
committerGlenn Morris2018-02-26 23:11:20 -0800
commit7c843eedaf087afb95aacff5d11e6e024e30407a (patch)
treef3453737f51acd3ddbb0cdccf4a4a37127c55fba
parentea2008aeebaaaca7571dd665d54eeddcd6d2c84c (diff)
downloademacs-7c843eedaf087afb95aacff5d11e6e024e30407a.tar.gz
emacs-7c843eedaf087afb95aacff5d11e6e024e30407a.zip
Remove leading * from two defcustom doc strings
* 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.
-rw-r--r--lisp/gnus/mm-util.el2
-rw-r--r--lisp/progmodes/cperl-mode.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el
index fcd97f2b27c..9ff346041de 100644
--- a/lisp/gnus/mm-util.el
+++ b/lisp/gnus/mm-util.el
@@ -431,7 +431,7 @@ mail with multiple parts is preferred to sending a Unicode one.")
431 (#x94 . #x201D) (#x95 . #x2022) (#x96 . #x2013) (#x97 . #x2014) 431 (#x94 . #x201D) (#x95 . #x2022) (#x96 . #x2013) (#x97 . #x2014)
432 (#x98 . #x02DC) (#x99 . #x2122) (#x9A . #x0161) (#x9B . #x203A) 432 (#x98 . #x02DC) (#x99 . #x2122) (#x9A . #x0161) (#x9B . #x203A)
433 (#x9C . #x0153) (#x9E . #x017E) (#x9F . #x0178))) 433 (#x9C . #x0153) (#x9E . #x017E) (#x9F . #x0178)))
434 "*Alist of extra numeric entities and characters other than ISO 10646. 434 "Alist of extra numeric entities and characters other than ISO 10646.
435This table is used for decoding extra numeric entities to characters, 435This table is used for decoding extra numeric entities to characters,
436like \"€\" to the euro sign, mainly in html messages." 436like \"€\" to the euro sign, mainly in html messages."
437 :type '(alist :key-type character :value-type character) 437 :type '(alist :key-type character :value-type character)
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index a62a974a99c..8c0682ac1c1 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -267,7 +267,7 @@ Versions 5.2 ... 5.20 behaved as if this were nil."
267 :group 'cperl-indentation-details) 267 :group 'cperl-indentation-details)
268 268
269(defcustom cperl-indent-subs-specially t 269(defcustom cperl-indent-subs-specially t
270 "*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." 270 "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."
271 :type 'boolean 271 :type 'boolean
272 :group 'cperl-indentation-details) 272 :group 'cperl-indentation-details)
273 273