diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2015-08-23 13:43:34 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2015-08-23 16:33:39 +0200 |
commit | 6b1765e05db432007ede6f1af3744e71063a728b (patch) | |
tree | f8e0b1cf2b8238a292b6896cf664079765f53861 /lisp/emacs-lisp | |
parent | 0b0c9565d050bfecc581b342c40b719917395896 (diff) | |
download | emacs-6b1765e05db432007ede6f1af3744e71063a728b.tar.gz emacs-6b1765e05db432007ede6f1af3744e71063a728b.tar.bz2 emacs-6b1765e05db432007ede6f1af3744e71063a728b.zip |
Revert "Extend ‘format’ to translate curved quotes"
This reverts commit 244c801689d2f7a80480d83cd7d092d4762ebe08.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/derived.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index 1f8572b278b..ee137f1771e 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el @@ -331,10 +331,9 @@ 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 (concat "[`%‘]" + (if (string-match (format "[`‘]%s['’]" (regexp-quote - (symbol-name parent)) - "['%’]") + (symbol-name parent))) docstring) nil (format "`%s' " parent)) |