[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107246: Add missing custom types to
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107246: Add missing custom types to sql.el |
Date: |
Sat, 11 Feb 2012 13:35:50 -0800 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107246
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-02-11 13:35:50 -0800
message:
Add missing custom types to sql.el
* lisp/progmodes/sql.el (sql-ansi-statement-starters)
(sql-oracle-statement-starters): Add custom type.
modified:
lisp/ChangeLog
lisp/progmodes/sql.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-02-11 21:19:22 +0000
+++ b/lisp/ChangeLog 2012-02-11 21:35:50 +0000
@@ -1,5 +1,8 @@
2012-02-11 Glenn Morris <address@hidden>
+ * 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.
=== modified file 'lisp/progmodes/sql.el'
--- a/lisp/progmodes/sql.el 2012-02-08 07:54:09 +0000
+++ b/lisp/progmodes/sql.el 2012-02-11 21:35:50 +0000
@@ -824,7 +824,9 @@
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 @@
: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.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107246: Add missing custom types to sql.el,
Glenn Morris <=