fromElisp icon indicating copy to clipboard operation
fromElisp copied to clipboard

Error parsing θ character

Open oneingan opened this issue 2 years ago • 2 comments

This excerpt:

(prot-emacs-elpa-package 'altcaps
  ;; Force letter casing for certain characters (for legibility).
  (setq altcaps-force-character-casing
        '((?i . downcase)
          (?l . upcase)
          (?θ . downcase))))

fail with error error: Unrecognized token on line 6: ?θ . downcase))

I have unicode emojis in other parsed files doing well.

oneingan avatar Dec 13 '22 14:12 oneingan

more info:

nix-repl> :p fromElisp "(?ñ . o)"
error: Unrecognized token on line 1: ?ñ . o)

but

nix-repl> :p fromElisp "(?o . ñ)"
[ [ "?o" "ñ" ] ]

is this expected?

oneingan avatar Dec 13 '22 14:12 oneingan

Also trips on :p fromElisp "(foo ?[)" which afaict was supported prior to https://github.com/talyz/fromElisp/commit/92097d081cd0210f7ee207720645c4d589a9b836

ayyess avatar Jan 07 '24 11:01 ayyess