diff options
| author | Glenn Morris | 2012-02-11 13:35:50 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-11 13:35:50 -0800 |
| commit | 5fec1b8e29366f9d356cbcdf85a481f4638873f6 (patch) | |
| tree | 8485978de4288afbdf70c402246609d0d1a9756b /lisp/progmodes/sql.el | |
| parent | 3e0d2fa76ed543f2f575055939cf77939cca87d5 (diff) | |
| download | emacs-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.el | 11 |
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 | ||
| 825 | All products share this list; products should define a regexp to | 825 | All products share this list; products should define a regexp to |
| 826 | identify additional keywords in a variable defined by | 826 | identify additional keywords in a variable defined by |
| 827 | the :statement feature.") | 827 | the :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. |