Skip to content

Commit

Permalink
removed read syntax #' from lambda expression in -find-user-variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dieter.wilhelm committed Oct 12, 2014
1 parent 1839868 commit 2174618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansys-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -3237,8 +3237,8 @@ Added pseudo arguments A B C."
;; for the display
(setq ansys-user-variables
(sort ansys-user-variables
#'(lambda (arg1 arg2)
(< (cadr arg1) (cadr arg2)))))
(lambda (arg1 arg2)
(< (cadr arg1) (cadr arg2)))))
;; make the regexp for fontification
(setq res (mapcar 'car ansys-user-variables)
res (regexp-opt res 'symbols) ;words inhibits variables ending in _!
Expand Down

0 comments on commit 2174618

Please sign in to comment.