]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix quoting when making derived mode docstring
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 Jun 2015 19:40:32 +0000 (12:40 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 Jun 2015 19:41:01 +0000 (12:41 -0700)
* lisp/emacs-lisp/derived.el (derived-mode-make-docstring):
Nest regexp-quote inside format, not the reverse.
Problem reported by Artur Malabarba in:
http://lists.gnu.org/archive/html/emacs-devel/2015-06/msg00206.html

lisp/emacs-lisp/derived.el

index 75bd325d9dbda72be26a1e4598c7fb90b8f3ff6b..52ff2aa99a2834ee4d5d15ce715ecaa132f62a3e 100644 (file)
@@ -331,9 +331,10 @@ which more-or-less shadow%s %s's corresponding table%s."
                        "\n\nThis mode "
                      (concat
                       "\n\nIn addition to any hooks its parent mode "
-                      (if (string-match (regexp-quote (format "[`‘]%s['’]"
-                                                               parent))
-                                        docstring) nil
+                      (if (string-match (format "[`‘]%s['’]"
+                                                 (regexp-quote parent))
+                                        docstring)
+                           nil
                         (format "`%s' " parent))
                       "might have run,\nthis mode "))
                    (format "runs the hook `%s'" hook)