aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
authorGlenn Morris2012-02-11 13:35:50 -0800
committerGlenn Morris2012-02-11 13:35:50 -0800
commit5fec1b8e29366f9d356cbcdf85a481f4638873f6 (patch)
tree8485978de4288afbdf70c402246609d0d1a9756b /lisp/progmodes/sql.el
parent3e0d2fa76ed543f2f575055939cf77939cca87d5 (diff)
downloademacs-5fec1b8e29366f9d356cbcdf85a481f4638873f6.tar.gz
emacs-5fec1b8e29366f9d356cbcdf85a481f4638873f6.zip
Add missing custom types to sql.el
* lisp/progmodes/sql.el (sql-ansi-statement-starters) (sql-oracle-statement-starters): Add custom type.
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r--lisp/progmodes/sql.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index f8f62d113e6..3c5ee36eb98 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -824,7 +824,9 @@ for the first time."
824 824
825All products share this list; products should define a regexp to 825All products share this list; products should define a regexp to
826identify additional keywords in a variable defined by 826identify additional keywords in a variable defined by
827the :statement feature.") 827the :statement feature."
828 :type 'string
829 :group 'SQL)
828 830
829;; Customization for Oracle 831;; Customization for Oracle
830 832
@@ -851,8 +853,11 @@ You will find the file in your Orant\\bin directory."
851 :version "24.1" 853 :version "24.1"
852 :group 'SQL) 854 :group 'SQL)
853 855
854(defcustom sql-oracle-statement-starters (regexp-opt '("declare" "begin" "with")) 856(defcustom sql-oracle-statement-starters
855 "Additional statement starting keywords in Oracle.") 857 (regexp-opt '("declare" "begin" "with"))
858 "Additional statement starting keywords in Oracle."
859 :type 'string
860 :group 'SQL)
856 861
857(defcustom sql-oracle-scan-on t 862(defcustom sql-oracle-scan-on t
858 "Non-nil if placeholders should be replaced in Oracle SQLi. 863 "Non-nil if placeholders should be replaced in Oracle SQLi.