Add missing custom types to sql.el
* lisp/progmodes/sql.el (sql-ansi-statement-starters) (sql-oracle-statement-starters): Add custom type.
This commit is contained in:
parent
3e0d2fa76e
commit
5fec1b8e29
2 changed files with 11 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
2012-02-11 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* progmodes/sql.el (sql-ansi-statement-starters)
|
||||
(sql-oracle-statement-starters): Add custom type.
|
||||
|
||||
* progmodes/prolog.el: Remove leading '*' from defcustom docs.
|
||||
(prolog-system-version): Give it a type.
|
||||
|
||||
|
|
|
@ -824,7 +824,9 @@ for the first time."
|
|||
|
||||
All products share this list; products should define a regexp to
|
||||
identify additional keywords in a variable defined by
|
||||
the :statement feature.")
|
||||
the :statement feature."
|
||||
:type 'string
|
||||
:group 'SQL)
|
||||
|
||||
;; Customization for Oracle
|
||||
|
||||
|
@ -851,8 +853,11 @@ You will find the file in your Orant\\bin directory."
|
|||
:version "24.1"
|
||||
:group 'SQL)
|
||||
|
||||
(defcustom sql-oracle-statement-starters (regexp-opt '("declare" "begin" "with"))
|
||||
"Additional statement starting keywords in Oracle.")
|
||||
(defcustom sql-oracle-statement-starters
|
||||
(regexp-opt '("declare" "begin" "with"))
|
||||
"Additional statement starting keywords in Oracle."
|
||||
:type 'string
|
||||
:group 'SQL)
|
||||
|
||||
(defcustom sql-oracle-scan-on t
|
||||
"Non-nil if placeholders should be replaced in Oracle SQLi.
|
||||
|
|
Loading…
Add table
Reference in a new issue