Emacs Lisp replace-string已经没有了replace-char.我想用常规ASCII引号替换"印刷"卷曲引号(此字符的Emacs代码是十六进制53979),我可以这样做:
replace-string
replace-char
(replace-string (make-string 1 ?\x53979) "'")
我认为这会更好replace-char.
做这个的最好方式是什么?
emacs elisp
elisp ×1
emacs ×1