Wilfred / suggest.el

discover elisp functions that do what you want
367 stars 14 forks source link

Incorrect formatting of characters #9

Closed Wilfred closed 8 years ago

Wilfred commented 8 years ago
;; Inputs (one per line):
"ab"

;; Desired output:
'(?a ?b)

;; Suggestions:
(string-to-list "ab") ;=> '(97 98)

We shouldn't show char codes here.

Wilfred commented 8 years ago

This is unavoidable if we want to show the evalled output. Characters are just integers.