mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-28 16:21:07 -08:00
Don't quote lambda expressions with `quote'.
This commit is contained in:
parent
782fc81943
commit
4f91a8160f
77 changed files with 466 additions and 493 deletions
|
|
@ -1207,13 +1207,13 @@ Based on `comint-mode-map'.")
|
|||
|
||||
(mapc
|
||||
;; In Emacs 22+, provide SYSTEM-FLAG to define-abbrev.
|
||||
'(lambda (abbrev)
|
||||
(let ((name (car abbrev))
|
||||
(expansion (cdr abbrev)))
|
||||
(condition-case nil
|
||||
(define-abbrev sql-mode-abbrev-table name expansion nil 0 t)
|
||||
(error
|
||||
(define-abbrev sql-mode-abbrev-table name expansion)))))
|
||||
(lambda (abbrev)
|
||||
(let ((name (car abbrev))
|
||||
(expansion (cdr abbrev)))
|
||||
(condition-case nil
|
||||
(define-abbrev sql-mode-abbrev-table name expansion nil 0 t)
|
||||
(error
|
||||
(define-abbrev sql-mode-abbrev-table name expansion)))))
|
||||
'(("ins" . "insert")
|
||||
("upd" . "update")
|
||||
("del" . "delete")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue