aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-06-15 18:02:33 -0400
committerGlenn Morris2015-06-15 18:02:33 -0400
commit4c4a329cf4fac46e3cc4c9ec6c9edb06ed9f9fb8 (patch)
treed8b4fc2c4aa31e441476e0bed2d2c7b40dd76dfe
parentf784272f7381dfd1fc1e6ba2c3c79cd1b7a9c5cd (diff)
downloademacs-4c4a329cf4fac46e3cc4c9ec6c9edb06ed9f9fb8.tar.gz
emacs-4c4a329cf4fac46e3cc4c9ec6c9edb06ed9f9fb8.zip
; * lisp/emacs-lisp/derived.el (derived-mode-make-docstring):
Fix recent change.
-rw-r--r--lisp/emacs-lisp/derived.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el
index 52ff2aa99a2..ee137f1771e 100644
--- a/lisp/emacs-lisp/derived.el
+++ b/lisp/emacs-lisp/derived.el
@@ -332,7 +332,8 @@ which more-or-less shadow%s %s's corresponding table%s."
332 (concat 332 (concat
333 "\n\nIn addition to any hooks its parent mode " 333 "\n\nIn addition to any hooks its parent mode "
334 (if (string-match (format "[`‘]%s['’]" 334 (if (string-match (format "[`‘]%s['’]"
335 (regexp-quote parent)) 335 (regexp-quote
336 (symbol-name parent)))
336 docstring) 337 docstring)
337 nil 338 nil
338 (format "`%s' " parent)) 339 (format "`%s' " parent))