Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Fixed an append issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dleslie committed Oct 15, 2014
1 parent 0b941c3 commit a1cb818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chicken-scheme.el
Expand Up @@ -245,8 +245,8 @@ Argument MODULE-LIST The modules to extract symbols from."
(cons n n))
(wrong-type-argument '())))
(chicken-load-symbols chicken-ac-modules))))))
(cdr ac-chicken-symbols-candidates-cache
(mapcar (lambda (s) (cons (symbol-name s) (symbol-name s))) chicken-builtin-symbols)))
(cdr (append ac-chicken-symbols-candidates-cache
(mapcar (lambda (s) (cons (symbol-name s) (symbol-name s))) chicken-builtin-symbols))))

(defun ac-r5rs-candidates ()
"Provides completion candidates for R5RS symbols"
Expand Down

0 comments on commit a1cb818

Please sign in to comment.