Commit a91758e7 authored by atomontage's avatar atomontage Committed by Luís Oliveira
Browse files

contrib/slime-c-p-c.el: completion bugfix

+ Fixes "mapcar: Symbol's function definition is void:
  append-char-syntax" error when trying to complete #\

  This bug was introduced by Joao Tavora in:
  3467ebc9
parent 0e1c822a
Showing with 1 addition and 1 deletion
+1 -1
......@@ -274,7 +274,7 @@ current buffer."
(let ((result (slime-eval `(swank:completions-for-character
,(cl-subseq prefix 2)))))
(when (car result)
(list (mapcar 'append-char-syntax (car result))
(list (mapcar #'append-char-syntax (car result))
(append-char-syntax (cadr result)))))))
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment