Skip to content

Commit aa60931

Browse files
Hendrik Tewssilene
authored andcommitted
fix Emacs compiler warning on '(lambda...)
lambda is self-quoting, see elisp manual, section 12.7 Anonymous Functions
1 parent dec77f2 commit aa60931

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gallina-db.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ for DB structure."
163163

164164
(defun coq-sort-menu-entries (menu)
165165
(sort menu
166-
'(lambda (x y) (string<
166+
(lambda (x y) (string<
167167
(downcase (elt x 0))
168168
(downcase (elt y 0))))))
169169

0 commit comments

Comments
 (0)