aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorMichael R. Mauger2019-03-22 22:28:01 -0400
committerMichael R. Mauger2019-03-22 22:34:41 -0400
commit068cbed32abfeb4e141cd5f56dedb084539ac7b7 (patch)
tree6b3b0d6739fbee8f00f3ad87d5d340e57896542e /lisp/progmodes
parentb515edb98521cf489c81457fa22e6efe78bb042d (diff)
downloademacs-068cbed32abfeb4e141cd5f56dedb084539ac7b7.tar.gz
emacs-068cbed32abfeb4e141cd5f56dedb084539ac7b7.zip
* lisp/progmodes/sql.el Bug#25424
(sql-end-of-statement): default terminator as semicolon.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/sql.el2
1 files changed, 1 insertions, 1 deletions
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."
3105(defun sql-end-of-statement (arg) 3105(defun sql-end-of-statement (arg)
3106 "Move to the end of the current SQL statement." 3106 "Move to the end of the current SQL statement."
3107 (interactive "p") 3107 (interactive "p")
3108 (let ((term (sql-get-product-feature sql-product :terminator)) 3108 (let ((term (or (sql-get-product-feature sql-product :terminator) ";"))
3109 (re-search (if (> 0 arg) 're-search-backward 're-search-forward)) 3109 (re-search (if (> 0 arg) 're-search-backward 're-search-forward))
3110 (here (point)) 3110 (here (point))
3111 (n 0)) 3111 (n 0))