From 2180fff17b244357998bd17e40743e2cf0e9d77d Mon Sep 17 00:00:00 2001 From: David Aspinall Date: Thu, 16 Aug 2012 14:16:37 +0000 Subject: Fix lambda quote --- coq/coq-db.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coq/coq-db.el') diff --git a/coq/coq-db.el b/coq/coq-db.el index 10c6c25d..a0d671ef 100644 --- a/coq/coq-db.el +++ b/coq/coq-db.el @@ -183,9 +183,9 @@ for DB structure." (defun coq-sort-menu-entries (menu) (sort menu - '(lambda (x y) (string< - (downcase (elt x 0)) - (downcase (elt y 0)))))) + #'(lambda (x y) (string< + (downcase (elt x 0)) + (downcase (elt y 0)))))) (defun coq-build-menu-from-db (db &optional size) "Take a keyword database DB and return a list of insertion menus for them. -- cgit v1.2.3