projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b515edb
)
* lisp/progmodes/sql.el Bug#25424
author
Michael R. Mauger
<michael@mauger.com>
Sat, 23 Mar 2019 02:28:01 +0000
(22:28 -0400)
committer
Michael R. Mauger
<michael@mauger.com>
Sat, 23 Mar 2019 02:34:41 +0000
(22:34 -0400)
(sql-end-of-statement): default terminator as semicolon.
lisp/progmodes/sql.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/sql.el
b/lisp/progmodes/sql.el
index 6d91d84fa7053ea9fd540d07da9cb55eaacfb5d5..4ab174d92b94810db55aade04d90d08ff1be88cc 100644
(file)
--- 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))