aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
authorAndreas Politz2013-10-12 22:23:42 -0700
committerGlenn Morris2013-10-12 22:23:42 -0700
commitfdcb2049f193c889c36e67cd5c230286660d113a (patch)
treeb249b9cc047237d19a5ff769f9176b9b634623f2 /lisp/progmodes/sql.el
parentfeab892d6b45f4cf6bf4749a03d765ce6a265ce9 (diff)
downloademacs-fdcb2049f193c889c36e67cd5c230286660d113a.tar.gz
emacs-fdcb2049f193c889c36e67cd5c230286660d113a.zip
* lisp/progmodes/sql.el (sql-add-product): Fix paren typo.
Fixes: debbugs:15435
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r--lisp/progmodes/sql.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index 56a6f155f31..0be23c27805 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -2439,7 +2439,7 @@ configuration."
2439 (user-error "Product `%s' is already defined" product) 2439 (user-error "Product `%s' is already defined" product)
2440 2440
2441 ;; Add product to the alist 2441 ;; Add product to the alist
2442 (add-to-list 'sql-product-alist `((,product :name ,display . ,plist))) 2442 (add-to-list 'sql-product-alist `(,product :name ,display . ,plist))
2443 ;; Add a menu item to the SQL->Product menu 2443 ;; Add a menu item to the SQL->Product menu
2444 (easy-menu-add-item sql-mode-menu '("Product") 2444 (easy-menu-add-item sql-mode-menu '("Product")
2445 ;; Each product is represented by a radio 2445 ;; Each product is represented by a radio