From: Michael R. Mauger Date: Sat, 23 Mar 2019 02:28:01 +0000 (-0400) Subject: * lisp/progmodes/sql.el Bug#25424 X-Git-Tag: emacs-27.0.90~3359 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=068cbed32abfeb4e141cd5f56dedb084539ac7b7;p=emacs.git * lisp/progmodes/sql.el Bug#25424 (sql-end-of-statement): default terminator as semicolon. --- diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 6d91d84fa70..4ab174d92b9 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -3105,7 +3105,7 @@ displayed." (defun sql-end-of-statement (arg) "Move to the end of the current SQL statement." (interactive "p") - (let ((term (sql-get-product-feature sql-product :terminator)) + (let ((term (or (sql-get-product-feature sql-product :terminator) ";")) (re-search (if (> 0 arg) 're-search-backward 're-search-forward)) (here (point)) (n 0))