]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing custom types to sql.el
authorGlenn Morris <rgm@gnu.org>
Sat, 11 Feb 2012 21:35:50 +0000 (13:35 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 11 Feb 2012 21:35:50 +0000 (13:35 -0800)
* lisp/progmodes/sql.el (sql-ansi-statement-starters)
(sql-oracle-statement-starters): Add custom type.

lisp/ChangeLog
lisp/progmodes/sql.el

index bf09296e3ebca57d7fbd3bc28dcf551763bbb588..cb7d88e545d40ecad919e13b117d1a49a1d556e5 100644 (file)
@@ -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.
 
index f8f62d113e628e6b4e34bb0e31658cb5d092e15d..3c5ee36eb98a4c5c088aeed75e6556b1a68586f0 100644 (file)
@@ -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.