Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
068cbed3
Commit
068cbed3
authored
Mar 22, 2019
by
Michael R. Mauger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/progmodes/sql.el Bug#25424
(sql-end-of-statement): default terminator as semicolon.
parent
b515edb9
Pipeline
#1058
passed with stage
in 48 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/progmodes/sql.el
lisp/progmodes/sql.el
+1
-1
No files found.
lisp/progmodes/sql.el
View file @
068cbed3
...
...
@@ -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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment