emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114644: * lisp/progmodes/sql.el (sql-add-product):


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114644: * lisp/progmodes/sql.el (sql-add-product): Fix paren typo.
Date: Sun, 13 Oct 2013 05:23:47 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114644
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15435
author: Andreas Politz <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-10-12 22:23:42 -0700
message:
  * lisp/progmodes/sql.el (sql-add-product): Fix paren typo.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/sql.el          sql.el-20091113204419-o5vbwnq5f7feedwu-1303
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-10-13 05:20:15 +0000
+++ b/lisp/ChangeLog    2013-10-13 05:23:42 +0000
@@ -1,3 +1,7 @@
+2013-10-13  Andreas Politz  <address@hidden>
+
+       * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
+
 2013-10-13  Glenn Morris  <address@hidden>
 
        * menu-bar.el (menu-bar-update-buffers):

=== modified file 'lisp/progmodes/sql.el'
--- a/lisp/progmodes/sql.el     2013-07-24 00:25:53 +0000
+++ b/lisp/progmodes/sql.el     2013-10-13 05:23:42 +0000
@@ -2439,7 +2439,7 @@
       (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]