diff options
| author | Andreas Politz <politza@hochschule-trier.de> | 2013-10-12 22:23:42 -0700 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2013-10-12 22:23:42 -0700 |
| commit | fdcb2049f193c889c36e67cd5c230286660d113a (patch) | |
| tree | b249b9cc047237d19a5ff769f9176b9b634623f2 | |
| parent | feab892d6b45f4cf6bf4749a03d765ce6a265ce9 (diff) | |
| download | emacs-fdcb2049f193c889c36e67cd5c230286660d113a.tar.gz | |
* lisp/progmodes/sql.el (sql-add-product): Fix paren typo.
Fixes: debbugs:15435
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/sql.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ec35dd90fc..bd2a69c89a8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-10-13 Andreas Politz <politza@hochschule-trier.de> + + * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435) + 2013-10-13 Glenn Morris <rgm@gnu.org> * menu-bar.el (menu-bar-update-buffers): 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." (user-error "Product `%s' is already defined" product) ;; Add product to the alist - (add-to-list 'sql-product-alist `((,product :name ,display . ,plist))) + (add-to-list 'sql-product-alist `(,product :name ,display . ,plist)) ;; Add a menu item to the SQL->Product menu (easy-menu-add-item sql-mode-menu '("Product") ;; Each product is represented by a radio |
