From: Vincenzo Pupillo Date: Mon, 17 Mar 2025 21:35:23 +0000 (+0100) Subject: MariaDB and Mysql handle escaped aphostrophes in the same way X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f89dae71970ee3785b860a5025f346177db2bcb6;p=emacs.git MariaDB and Mysql handle escaped aphostrophes in the same way * lisp/progmodes/sql.el (sql-mode): MariaDB and Mysql both handle escaped apostrophes in the same way. (Bug#77088) (cherry picked from commit cace07f27dc31091a606a70ae8b957cd5dd7da43) --- diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 8c9d5242ef1..e3970e0ab0a 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -4082,7 +4082,7 @@ must tell Emacs. Here's how to do that in your init file: (eval '(syntax-propertize-rules ;; Handle escaped apostrophes within strings. - ((if (eq sql-product 'mysql) + ((if (member sql-product '(mysql mariadb)) "\\\\'" "''") (0