* lisp/emacs-lisp/bytecomp.el (byte-compile-docstring-style-warn):
Remove warning for "Unicode quotes" for now (bug#55780).
(when (string-match-p "\\( \"\\|[ \t]\\|^\\)'[a-z(]" docs)
(byte-compile-warn-x
name "%s%sdocstring has wrong usage of unescaped single quotes (use \\= or different quoting)"
- kind name))
- ;; There's a "Unicode quote" in the string -- it should probably
- ;; be an ASCII one instead.
- (when (string-match-p "\\( \"\\|[ \t]\\|^\\)[‘’]" docs)
- (byte-compile-warn-x
- name "%s%sdocstring has wrong usage of \"fancy\" single quotation marks"
kind name)))))
form)